osem-fcy/db/migrate/20170606182954_create_call_for_booths.rb

13 lines
264 B
Ruby
Raw Normal View History

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
t.references :conference
2017-06-06 21:36:18 +03:00
t.timestamps null: false
end
end
end