7 lines
200 B
Ruby
7 lines
200 B
Ruby
class AddSkill0ToParty < ActiveRecord::Migration[6.1]
|
|
def change
|
|
change_table(:parties) do |t|
|
|
t.references :skill0, type: :uuid, foreign_key: { to_table: "job_skills" }
|
|
end
|
|
end
|
|
end
|