remove strict tables
This commit is contained in:
parent
f906c4142e
commit
99341d7778
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user