16 lines
285 B
Ruby
16 lines
285 B
Ruby
|
class CreateWorkers < ActiveRecord::Migration[7.1]
|
||
|
def change
|
||
|
create_table :workers do |t|
|
||
|
t.string :name
|
||
|
t.string :address
|
||
|
t.string :phone
|
||
|
t.string :email
|
||
|
t.date :dob
|
||
|
t.string :ssn
|
||
|
t.string :gender
|
||
|
|
||
|
t.timestamps
|
||
|
end
|
||
|
end
|
||
|
end
|