mirror of
https://github.com/we-promise/sure.git
synced 2026-08-12 11:10:20 +00:00
* Add parent sync orchestration * Pass sync object to dependents
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
|