setup: sqlite: Add "parent" refere to "page"

This commit is contained in:
Albert S. 2023-11-23 18:25:03 +01:00
parent 2d5d483790
commit 0fb0457dbb
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
CREATE TABLE page(id INTEGER PRIMARY KEY, name varchar(256), title varchar(1024), lastrevision integer, visible integer DEFAULT 1);
CREATE TABLE page(id INTEGER PRIMARY KEY, name varchar(256), title varchar(1024), lastrevision integer, visible integer DEFAULT 1, parent integer REFERENCES page(id));
CREATE TABLE user(id INTEGER PRIMARY KEY,username varchar(64),
password blob, salt blob, permissions integer, enabled integer DEFAULT 1);
CREATE TABLE session(id INTEGER PRIMARY KEY, csrf_token varchar(32),