mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-27 04:51:14 +00:00
7 lines
149 B
Ruby
7 lines
149 B
Ruby
|
class AddCreatorToBans < ActiveRecord::Migration
|
||
|
def change
|
||
|
add_column :bans, :creator_id, :integer
|
||
|
add_index :bans, :creator_id
|
||
|
end
|
||
|
end
|