diff --git a/schema-migration/000-init.sql b/schema-migration/000-init.sql index 2174109..754732a 100644 --- a/schema-migration/000-init.sql +++ b/schema-migration/000-init.sql @@ -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, );