socialforge/db/migrate/20160517091224_create_apply...

12 lines
225 B
Ruby

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