Compare commits

..

2 commits

Author SHA1 Message Date
486c9ae641
Merge branch 'dev' into feature/blog 2025-05-05 17:57:43 +01:00
35e149e186
oops 2025-05-05 17:55:42 +01:00

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);