This commit is contained in:
ari melody 2025-05-05 17:54:44 +01:00
parent 76cf1bb0d5
commit 35e149e186
Signed by: ari
GPG key ID: 60B5F0386E3DDB7E

View file

@ -18,9 +18,9 @@ CREATE TABLE arimelody.account (
password TEXT NOT NULL,
email TEXT,
avatar_url TEXT,
created_at TIMESTAMP NOT NULL DEFAULT current_timestamp
created_at TIMESTAMP NOT NULL DEFAULT current_timestamp,
fail_attempts INT NOT NULL DEFAULT 0,
locked BOOLEAN DEFAULT false,
locked BOOLEAN DEFAULT false
);
ALTER TABLE arimelody.account ADD CONSTRAINT account_pk PRIMARY KEY (id);