ensl.org/db/migrate/20170304191254_add_creator_to_bans.rb
Ari Timonen 6bcfffa1ee Major update, bugfixes
- Use ruby 2.7.7 as it fixed startup issues
- Update gems
- Remove depr. from puma startup
- Make entry.sh dir-agnostic

Fix tests:
- Use apparition
- Update migrations to use new syntax
- Some other minor changes
2023-02-19 17:08:46 +02:00

6 lines
154 B
Ruby

class AddCreatorToBans < ActiveRecord::Migration[4.2]
def change
add_column :bans, :creator_id, :integer
add_index :bans, :creator_id
end
end