From 876d6c489d6ab0e3520438456f1604dde5cb53b0 Mon Sep 17 00:00:00 2001 From: ari melody Date: Mon, 5 May 2025 17:54:44 +0100 Subject: [PATCH] oops --- schema-migration/000-init.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, );