mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-26 20:41:01 +00:00
8 lines
129 B
Ruby
8 lines
129 B
Ruby
|
class AddCaster < ActiveRecord::Migration
|
||
|
def change
|
||
|
change_table :matches do |m|
|
||
|
m.string :caster_id
|
||
|
end
|
||
|
end
|
||
|
end
|