Files
pocket-id/backend/resources/migrations/sqlite/20260727000000_signup_token_email_domain.down.sql
T

6 lines
116 B
PL/PgSQL

PRAGMA foreign_keys=OFF;
BEGIN;
ALTER TABLE signup_tokens DROP COLUMN email_domain;
COMMIT;
PRAGMA foreign_keys=ON;