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

11 lines
233 B
Ruby

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.timestamps null: false
end
end
end