Files
sx-fc/db/migrate/20170825090115_create_commissioners.rb
2018-02-19 15:43:27 +06:30

17 lines
426 B
Ruby
Executable File

class CreateCommissioners < ActiveRecord::Migration[5.1]
# rake db:migrate:down VERSION=20170825090115
def change
create_table :commissioners do |t|
t.string :name
t.string :emp_id
t.string :created_by
t.string :commission_id
t.datetime :joined_date
t.datetime :resigned_date
t.boolean :is_active, default: true
t.string :image_path
t.timestamps
end
end
end