mirror of
https://github.com/martinrotter/rssguard.git
synced 2025-01-10 15:22:30 +01:00
81 lines
4.0 KiB
SQL
81 lines
4.0 KiB
SQL
DROP TABLE IF EXISTS Information;
|
|
-- !
|
|
CREATE TABLE IF NOT EXISTS Information (
|
|
key TEXT PRIMARY KEY,
|
|
value TEXT NOT NULL
|
|
);
|
|
-- !
|
|
INSERT INTO Information VALUES ('schema_version', '0.0.1');
|
|
-- !
|
|
DROP TABLE IF EXISTS Categories;
|
|
-- !
|
|
CREATE TABLE IF NOT EXISTS Categories (
|
|
id INTEGER PRIMARY KEY,
|
|
parent_id INTEGER NOT NULL,
|
|
title TEXT NOT NULL UNIQUE CHECK (title != ''),
|
|
description TEXT,
|
|
date_created TEXT NOT NULL CHECK (date_created != ''),
|
|
icon BLOB,
|
|
type INTEGER NOT NULL,
|
|
|
|
FOREIGN KEY (parent_id) REFERENCES Categories (id)
|
|
);
|
|
-- !
|
|
DROP TABLE IF EXISTS Feeds;
|
|
-- !
|
|
CREATE TABLE IF NOT EXISTS Feeds (
|
|
id INTEGER PRIMARY KEY,
|
|
title TEXT NOT NULL CHECK (title != ''),
|
|
description TEXT,
|
|
date_created TEXT NOT NULL CHECK (date_created != ''),
|
|
icon BLOB,
|
|
category INTEGER NOT NULL CHECK (category >= -1),
|
|
encoding TEXT NOT NULL CHECK (encoding != ''),
|
|
url TEXT NOT NULL UNIQUE CHECK (url != ''),
|
|
language TEXT,
|
|
type INTEGER NOT NULL CHECK (type >= 0)
|
|
);
|
|
-- !
|
|
DROP TABLE IF EXISTS FeedsData;
|
|
-- !
|
|
CREATE TABLE IF NOT EXISTS FeedsData (
|
|
id INTEGER NOT NULL,
|
|
key TEXT NOT NULL,
|
|
value TEXT,
|
|
|
|
PRIMARY KEY (id, key),
|
|
FOREIGN KEY (id) REFERENCES Feeds (id)
|
|
);
|
|
-- !
|
|
DROP TABLE IF EXISTS Messages;
|
|
-- !
|
|
CREATE TABLE IF NOT EXISTS Messages (
|
|
id INTEGER PRIMARY KEY,
|
|
read INTEGER(1) NOT NULL CHECK (read >= 0 AND read <= 1) DEFAULT (0),
|
|
deleted INTEGER(1) NOT NULL CHECK (deleted >= 0 AND deleted <= 1) DEFAULT (0),
|
|
important INTEGER(1) NOT NULL CHECK (important >= 0 AND important <= 1) DEFAULT (0),
|
|
feed INTEGER NOT NULL,
|
|
title TEXT NOT NULL CHECK (title != ''),
|
|
url TEXT,
|
|
author TEXT,
|
|
date_created TEXT NOT NULL CHECK (date_created != ''),
|
|
contents TEXT,
|
|
|
|
FOREIGN KEY (feed) REFERENCES Feeds (id)
|
|
);
|
|
-- !
|
|
INSERT INTO Categories (id, parent_id, title, description, date_created, type) VALUES (1, -1, 'Linux', 'Collections of GNU/Linux-related feeds.', '2013-12-20T08:00:00-05:00', 0);
|
|
-- !
|
|
INSERT INTO Categories (id, parent_id, title, description, date_created, type) VALUES (2, -1, 'RSS Guard', 'News and updates on RSS Guard.', '2013-12-20T08:00:00-05:00', 0);
|
|
-- !
|
|
INSERT INTO Feeds (title, description, date_created, category, encoding, url, type) VALUES ('Linux Today', 'Linux Today - Linux News on Internet Time.', '2013-12-20T08:00:00-05:00', 1, 'UTF-8', 'http://feeds.feedburner.com/linuxtoday/linux?format=xml', 1);
|
|
-- !
|
|
INSERT INTO Feeds (title, description, date_created, category, encoding, url, type) VALUES ('LinuxInsider', 'LinuxInsider: Linux News & Information from Around the World.', '2013-12-20T08:00:00-05:00', 1, 'UTF-8', 'http://www.linuxinsider.com/perl/syndication/rssfull.pl', 2);
|
|
-- !
|
|
INSERT INTO Feeds (title, description, date_created, category, encoding, url, type) VALUES ('LXer: Linux News', 'The world is talking about GNU/Linux and Free/Open Source Software.', '2013-12-20T08:00:00-05:00', 1, 'UTF-8', 'http://lxer.com/module/newswire/headlines.rss', 2);
|
|
-- !
|
|
INSERT INTO Feeds (title, description, date_created, category, encoding, url, type) VALUES ('Recent Commits', 'Recent commits for RSS Guard project.', '2013-12-20T08:00:00-05:00', 2, 'UTF-8', 'https://github.com/martinrotter/rssguard/commits/master.atom', 3);
|
|
-- !
|
|
INSERT INTO Feeds (title, description, date_created, category, encoding, url, type) VALUES ('Releases', 'Releases for RSS Guard.', '2013-12-20T08:00:00-05:00', 2, 'UTF-8', 'https://github.com/martinrotter/rssguard/releases.atom', 3);
|
|
-- !
|
|
INSERT INTO Feeds (title, description, date_created, category, encoding, url, type) VALUES ('Author''s Activity', 'RSS Guard author public activity overview.', '2013-12-20T08:00:00-05:00', 2, 'UTF-8', 'https://github.com/martinrotter.atom', 3); |