Files
pocket-id/backend/resources/migrations/sqlite/20241025214824_app_config_default_value.down.sql
2025-08-24 23:07:50 +02:00

6 lines
124 B
PL/PgSQL

PRAGMA foreign_keys=OFF;
BEGIN;
ALTER TABLE app_config_variables DROP COLUMN default_value;
COMMIT;
PRAGMA foreign_keys=ON;