11 lines
195 B
Ruby
11 lines
195 B
Ruby
|
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
|