mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-02-06 02:02:57 +00:00
9 lines
152 B
PL/PgSQL
9 lines
152 B
PL/PgSQL
PRAGMA foreign_keys= OFF;
|
|
BEGIN;
|
|
|
|
DROP TABLE email_verification_tokens;
|
|
ALTER TABLE users DROP COLUMN email_verified;
|
|
|
|
COMMIT;
|
|
PRAGMA foreign_keys= ON;
|