mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 13:38:18 -08:00
10 lines
277 B
Ruby
10 lines
277 B
Ruby
class CreateParentEmployment < ActiveRecord::Migration[8.0]
|
|
def change
|
|
create_table :parent_employments do |t|
|
|
t.references :parent, null: false, foreign_key: true
|
|
t.references :employment, null: false, foreign_key: true
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|