0
0
Fork 0
mirror of https://github.com/ENSL/ensl.org.git synced 2025-01-26 03:01:00 +00:00
ensl.org/db/migrate/20170304191254_add_creator_to_bans.rb

7 lines
149 B
Ruby
Raw Normal View History

2017-03-04 21:45:05 +00:00
class AddCreatorToBans < ActiveRecord::Migration
def change
add_column :bans, :creator_id, :integer
add_index :bans, :creator_id
end
end