remove strict tables
This commit is contained in:
parent
f906c4142e
commit
99341d7778
@ -38,7 +38,7 @@ CREATE TABLE site (
|
|||||||
url text not null,
|
url text not null,
|
||||||
comment_token text not null,
|
comment_token text not null,
|
||||||
length_limit integer
|
length_limit integer
|
||||||
) STRICT;
|
);
|
||||||
|
|
||||||
CREATE TABLE comment (
|
CREATE TABLE comment (
|
||||||
id integer not null,
|
id integer not null,
|
||||||
@ -51,7 +51,7 @@ CREATE TABLE comment (
|
|||||||
reply_to integer,
|
reply_to integer,
|
||||||
FOREIGN KEY(site) REFERENCES site(id),
|
FOREIGN KEY(site) REFERENCES site(id),
|
||||||
PRIMARY KEY (site, path, id)
|
PRIMARY KEY (site, path, id)
|
||||||
) STRICT;
|
);
|
||||||
`,
|
`,
|
||||||
down: `
|
down: `
|
||||||
DROP TABLE comment;
|
DROP TABLE comment;
|
||||||
|
Loading…
Reference in New Issue
Block a user