|
class CreateEmployments < ActiveRecord::Migration[7.1]
|
|
def change
|
|
create_table :employments do |t|
|
|
t.references :worker, null: false, foreign_key: true
|
|
t.references :participant, null: false, foreign_key: true
|
|
t.date :start_date
|
|
t.date :end_date
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|