8 lines
275 B
SQL
8 lines
275 B
SQL
-- The up migration merges duplicate bots/bindings and rewrites references.
|
|
-- Those deleted rows and original references cannot be reconstructed safely.
|
|
DO $$
|
|
BEGIN
|
|
RAISE EXCEPTION 'migration 000079 is irreversible: restore from backup instead of migrating down';
|
|
END
|
|
$$;
|