From 99341d7778fb28ddee33d1d5846e8de691e9c155 Mon Sep 17 00:00:00 2001 From: me Date: Fri, 14 Mar 2025 10:18:10 +0200 Subject: [PATCH] remove strict tables --- backend/src/main.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/src/main.mjs b/backend/src/main.mjs index b77da3f..0c92858 100644 --- a/backend/src/main.mjs +++ b/backend/src/main.mjs @@ -38,7 +38,7 @@ CREATE TABLE site ( url text not null, comment_token text not null, length_limit integer -) STRICT; +); CREATE TABLE comment ( id integer not null, @@ -51,7 +51,7 @@ CREATE TABLE comment ( reply_to integer, FOREIGN KEY(site) REFERENCES site(id), PRIMARY KEY (site, path, id) -) STRICT; +); `, down: ` DROP TABLE comment;