summaryrefslogtreecommitdiff
path: root/internal/storage/migrations/postgres/V0009.FixConstraints.up.sql
blob: 1501f822be8506199ff8e7fb114f750de49e1439 (plain)
1
2
3
4
5
6
ALTER TABLE webauthn_devices
    ALTER COLUMN aaguid DROP NOT NULL;

UPDATE webauthn_devices
SET aaguid = NULL
WHERE aaguid = '' OR aaguid = '00000000-00000000-00000000-00000000';