socialforge/db/migrate/20131113124237_create_join_...

11 lines
195 B
Ruby
Raw Permalink Normal View History

2013-11-14 15:55:56 +08:00
class CreateJoinInContests < ActiveRecord::Migration
def change
create_table :join_in_contests do |t|
t.integer :user_id
t.integer :bid_id
t.timestamps
end
end
end