mirror of
https://github.com/matrix-org/sliding-sync.git
synced 2025-03-10 13:37:11 +00:00
8 lines
223 B
SQL
8 lines
223 B
SQL
-- +goose Up
|
|
ALTER TABLE IF EXISTS syncv3_events
|
|
ADD COLUMN IF NOT EXISTS missing_previous BOOLEAN NOT NULL DEFAULT FALSE;
|
|
|
|
-- +goose Down
|
|
ALTER TABLE IF EXISTS syncv3_events
|
|
DROP COLUMN IF EXISTS missing_previous;
|