Files
sx-fc/db/migrate/20170818090115_create_commissioners.rb
2017-08-21 13:30:04 +06:30

13 lines
292 B
Ruby

class CreateCommissioners < ActiveRecord::Migration[5.1]
def change
create_table :commissioners do |t|
t.string :name, :null => false
t.string :emp_id
t.string :created_by
t.string :commission_type
t.boolean :is_active
t.timestamps
end
end
end