summaryrefslogtreecommitdiff
path: root/internal/storage/migrations/postgres/V0014.RevokeResetPasswordJWT.up.sql
blob: 8452a552ea298ca32aa1c3c6519a2b984a340fe4 (plain)
1
2
3
ALTER TABLE identity_verification
    ADD COLUMN revoked TIMESTAMP WITH TIME ZONE NULL DEFAULT NULL,
    ADD COLUMN revoked_ip VARCHAR(39) NULL DEFAULT NULL;