You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
-- You should not modify if this have pushed to Github, unless it does serious wrong with the db.
|
|
|
|
BEGIN TRANSACTION;
|
|
|
|
|
|
|
|
CREATE TABLE [status_page](
|
|
|
|
[id] INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
|
|
|
|
[slug] VARCHAR(255) NOT NULL UNIQUE,
|
|
|
|
[title] VARCHAR(255) NOT NULL,
|
|
|
|
[icon] VARCHAR(255) NOT NULL,
|
|
|
|
[theme] VARCHAR(30) NOT NULL,
|
|
|
|
[published] BOOLEAN NOT NULL DEFAULT 1,
|
|
|
|
[search_engine_index] BOOLEAN NOT NULL DEFAULT 1,
|
|
|
|
[show_tags] BOOLEAN NOT NULL DEFAULT 0,
|
|
|
|
[password] VARCHAR
|
|
|
|
);
|
|
|
|
|
|
|
|
CREATE UNIQUE INDEX [slug] ON [status_page]([slug]);
|
|
|
|
|
|
|
|
|
|
|
|
CREATE TABLE [status_page_cname](
|
|
|
|
[id] INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
|
|
|
|
[status_page_id] INTEGER NOT NULL REFERENCES [status_page]([id]) ON DELETE CASCADE ON UPDATE CASCADE,
|
|
|
|
[domain] VARCHAR NOT NULL UNIQUE
|
|
|
|
);
|
|
|
|
|
|
|
|
COMMIT;
|