obdev/db/migrate/20240117023520_create_emplo...

17 lines
309 B
Ruby

class CreateEmployers < ActiveRecord::Migration[7.1]
def change
create_table :employers do |t|
t.string :name
t.string :address
t.string :phone
t.string :email
t.string :tin
t.date :dob
t.string :ssn
t.string :gender
t.timestamps
end
end
end