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;