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

6 lines
120 B
PL/PgSQL

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