mirror of
https://github.com/ENSL/ensl.org.git
synced 2025-01-13 21:31:28 +00:00
10 lines
146 B
Ruby
10 lines
146 B
Ruby
class AddNs2 < ActiveRecord::Migration
|
|
def up
|
|
change_table :gathers do |t|
|
|
t.references :category
|
|
end
|
|
end
|
|
|
|
def down
|
|
end
|
|
end
|