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