ente/server/migrations/26_update_ott_and_twofactor.up.sql
2024-03-01 13:37:01 +05:30

20 lines
460 B
PL/PgSQL

ALTER TABLE otts
ADD COLUMN wrong_attempt INTEGER DEFAULT 0;
ALTER TABLE two_factor_sessions
ADD COLUMN wrong_attempt INTEGER DEFAULT 0;
BEGIN;
UPDATE otts set wrong_attempt = 0 where wrong_attempt is null;
ALTER TABLE otts
ALTER COLUMN wrong_attempt SET NOT NULL;
COMMIT;
BEGIN;
UPDATE two_factor_sessions set wrong_attempt = 0 where wrong_attempt is null;
ALTER TABLE two_factor_sessions
ALTER COLUMN wrong_attempt SET NOT NULL;
COMMIT;