setup: sqlite: Rename visible => listed, Add 'feedlisted' to indicate whether page should be listed in feeds

Este commit está contenido en:
Albert S. 2023-12-16 21:29:54 +01:00
padre 84adaa934a
commit 18f4ad9d51
Se han modificado 1 ficheros con 1 adiciones y 1 borrados

Ver fichero

@ -1,4 +1,4 @@
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 page(id INTEGER PRIMARY KEY, name varchar(256), title varchar(1024), lastrevision integer, listed integer DEFAULT 1, parent integer REFERENCES page(id), feedlisted integer DEFAULT 1);
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),