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