13 lines
292 B
Ruby
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
|