2017-06-06 21:36:18 +03:00
|
|
|
class CreateCallForBooths < ActiveRecord::Migration
|
|
|
|
|
def change
|
|
|
|
|
create_table :call_for_booths do |t|
|
|
|
|
|
t.date :start_date
|
|
|
|
|
t.date :end_date
|
|
|
|
|
t.integer :booth_limit
|
2017-06-10 23:50:31 +03:00
|
|
|
t.references :conference
|
2017-06-06 21:36:18 +03:00
|
|
|
|
|
|
|
|
t.timestamps null: false
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|