mirror of
https://github.com/pocket-id/pocket-id.git
synced 2025-12-20 09:15:42 +03:00
9 lines
261 B
PL/PgSQL
9 lines
261 B
PL/PgSQL
PRAGMA foreign_keys=OFF;
|
|
BEGIN;
|
|
ALTER TABLE app_config_variables DROP type;
|
|
ALTER TABLE app_config_variables DROP is_public;
|
|
ALTER TABLE app_config_variables DROP is_internal;
|
|
ALTER TABLE app_config_variables DROP default_value;
|
|
COMMIT;
|
|
PRAGMA foreign_keys=ON;
|