mirror of
https://github.com/we-promise/sure.git
synced 2026-04-11 08:14:49 +00:00
6 lines
157 B
Ruby
6 lines
157 B
Ruby
class AddParentSyncs < ActiveRecord::Migration[7.2]
|
|
def change
|
|
add_reference :syncs, :parent, foreign_key: { to_table: :syncs }, type: :uuid
|
|
end
|
|
end
|