Files
sx-fc/db/migrate/20170403142424_create_dining_facilities.rb
2017-04-04 01:09:17 +06:30

18 lines
527 B
Ruby

class CreateDiningFacilities < ActiveRecord::Migration[5.0]
def change
create_table :dining_facilities do |t|
t.references :zone, foreign_key: true
t.string :name, :null => false
t.string :status, :null => false, :default => "available"
t.string :type, :null => false, :default => "table"
t.integer :seater, :null => false, :default => 2
t.integer :order_by
t.string :created_by
t.boolean :is_active, :null => false, :default => true
t.timestamps
end
end
end