1
mirror of https://gitlab.com/commento/commento.git synced 2025-06-28 22:55:39 -04:00
Files
commento/db/20180922181651-page-attributes.sql
2018-09-23 00:26:37 -04:00

10 lines
352 B
SQL

-- Introduces page attributes
CREATE TABLE IF NOT EXISTS pages (
domain TEXT NOT NULL ,
path TEXT NOT NULL ,
isLocked BOOLEAN NOT NULL DEFAULT false
);
CREATE UNIQUE INDEX pagesUniqueIndex ON pages(domain, path);