mirror of
https://github.com/pocket-id/pocket-id.git
synced 2025-12-21 01:11:33 +03:00
8 lines
197 B
PL/PgSQL
8 lines
197 B
PL/PgSQL
PRAGMA foreign_keys=OFF;
|
|
BEGIN;
|
|
DROP INDEX IF EXISTS idx_signup_tokens_expires_at;
|
|
DROP INDEX IF EXISTS idx_signup_tokens_token;
|
|
DROP TABLE IF EXISTS signup_tokens;
|
|
COMMIT;
|
|
PRAGMA foreign_keys=ON;
|