wedding-planner/db/migrate/20240811143801_add_parent_to_group.rb

6 lines
174 B
Ruby
Raw Normal View History

2024-08-11 17:26:43 +02:00
class AddParentToGroup < ActiveRecord::Migration[7.1]
def change
add_reference :groups, :parent, type: :uuid, index: true, foreign_key: { to_table: :groups }
end
end