mirror of
https://github.com/pocket-id/pocket-id.git
synced 2025-12-19 09:13:25 +03:00
9 lines
136 B
PL/PgSQL
9 lines
136 B
PL/PgSQL
PRAGMA foreign_keys=OFF;
|
|
BEGIN;
|
|
DROP INDEX idx_users_disabled;
|
|
|
|
ALTER TABLE users
|
|
DROP COLUMN disabled;
|
|
COMMIT;
|
|
PRAGMA foreign_keys=ON;
|