mirror of
https://github.com/AventurasTeam/Aventuras.git
synced 2026-04-28 11:50:15 +00:00
4 lines
290 B
SQL
4 lines
290 B
SQL
-- Add snapshot_complete flag to branches.
|
|
-- When set, the branch has its own complete entity set (copied at creation time)
|
|
-- and does NOT need lineage resolution. This ensures full isolation between branches.
|
|
ALTER TABLE branches ADD COLUMN snapshot_complete INTEGER NOT NULL DEFAULT 0;
|