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

View file

@ -18,7 +18,7 @@ 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,
);