fix typo in schema migrations...oops!

This commit is contained in:
ari melody 2025-01-26 20:50:02 +00:00
parent 2fc855450e
commit 2e93c3c5e5
Signed by: ari
GPG key ID: CF99829C92678188
2 changed files with 5 additions and 5 deletions

View file

@ -45,8 +45,8 @@ CREATE TABLE arimelody.totp (
name TEXT NOT NULL,
account UUID NOT NULL,
secret TEXT,
created_at TIMESTAMP NOT NULL DEFAULT current_timestamp
confirmed BOOLEAN DEFAULT false,
created_at TIMESTAMP NOT NULL DEFAULT current_timestamp,
confirmed BOOLEAN DEFAULT false
);
ALTER TABLE arimelody.totp ADD CONSTRAINT totp_pk PRIMARY KEY (account, name);