mirror of
https://github.com/pocket-id/pocket-id.git
synced 2025-12-21 09:15:55 +03:00
7 lines
148 B
PL/PgSQL
7 lines
148 B
PL/PgSQL
PRAGMA foreign_keys=OFF;
|
|
BEGIN;
|
|
ALTER TABLE application_configuration_variables
|
|
RENAME TO app_config_variables;
|
|
COMMIT;
|
|
PRAGMA foreign_keys=ON;
|