mirror of
https://github.com/ENSL/ensl.org.git
synced 2025-01-15 14:20:54 +00:00
11 lines
146 B
Ruby
11 lines
146 B
Ruby
|
class AddNs2 < ActiveRecord::Migration
|
||
|
def up
|
||
|
change_table :gathers do |t|
|
||
|
t.references :category
|
||
|
end
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
end
|
||
|
end
|