socialforge/db/migrate/20130725132508_create_bidin...

13 lines
250 B
Ruby
Raw Normal View History

2013-08-01 10:33:49 +08:00
class CreateBidingProjects < ActiveRecord::Migration
def change
create_table :biding_projects do |t|
t.integer :project_id
t.integer :bid_id
t.integer :user_id
t.string :description
t.timestamps
end
end
end