socialforge/db/migrate/20151204030143_create_org_s...

14 lines
234 B
Ruby
Raw Normal View History

2015-12-04 17:34:48 +08:00
class CreateOrgSubfields < ActiveRecord::Migration
def up
create_table :org_subfields do |t|
t.integer :organization_id
t.integer :priority
t.string :name
t.timestamps
end
end
def down
end
end