From c83c6674bf0c5e2ab67fa5f7e053bb2f4ef7ce2a Mon Sep 17 00:00:00 2001 From: ari melody Date: Sun, 26 Jan 2025 20:50:02 +0000 Subject: [PATCH] fix typo in schema migrations...oops! --- schema-migration/000-init.sql | 4 ++-- schema-migration/001-pre-versioning.sql | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/schema-migration/000-init.sql b/schema-migration/000-init.sql index 8751180..918edaa 100644 --- a/schema-migration/000-init.sql +++ b/schema-migration/000-init.sql @@ -45,8 +45,8 @@ CREATE TABLE arimelody.totp ( name TEXT NOT NULL, account UUID NOT NULL, secret TEXT, - created_at TIMESTAMP NOT NULL DEFAULT current_timestamp - confirmed BOOLEAN DEFAULT false, + created_at TIMESTAMP NOT NULL DEFAULT current_timestamp, + confirmed BOOLEAN DEFAULT false ); ALTER TABLE arimelody.totp ADD CONSTRAINT totp_pk PRIMARY KEY (account, name); diff --git a/schema-migration/001-pre-versioning.sql b/schema-migration/001-pre-versioning.sql index 37de432..7dc0259 100644 --- a/schema-migration/001-pre-versioning.sql +++ b/schema-migration/001-pre-versioning.sql @@ -45,8 +45,8 @@ CREATE TABLE arimelody.totp ( name TEXT NOT NULL, account UUID NOT NULL, secret TEXT, - created_at TIMESTAMP NOT NULL DEFAULT current_timestamp - confirmed BOOLEAN DEFAULT false, + created_at TIMESTAMP NOT NULL DEFAULT current_timestamp, + confirmed BOOLEAN DEFAULT false ); ALTER TABLE arimelody.totp ADD CONSTRAINT totp_pk PRIMARY KEY (account, name);