socialforge/db/migrate/20160517091224_create_apply...

12 lines
225 B
Ruby
Raw Normal View History

2016-05-18 14:49:13 +08:00
class CreateApplyResources < ActiveRecord::Migration
def change
create_table :apply_resources do |t|
t.integer :status
t.integer :user_id
t.integer :attachment_id
t.timestamps
end
end
end