2013-12-14 11:45:43 +01:00
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 ,
2014-01-02 19:24:40 +01:00
date_created INTEGER NOT NULL CHECK ( date_created ! = 0 ) ,
2013-12-14 11:45:43 +01:00
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 ,
2014-01-02 19:24:40 +01:00
date_created INTEGER NOT NULL CHECK ( date_created ! = 0 ) ,
2013-12-14 11:45:43 +01:00
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 ,
2014-01-02 19:24:40 +01:00
date_created INTEGER NOT NULL CHECK ( date_created ! = 0 ) ,
2013-12-14 11:45:43 +01:00
contents TEXT ,
FOREIGN KEY ( feed ) REFERENCES Feeds ( id )
) ;
-- !
2014-01-02 19:24:40 +01:00
INSERT INTO Categories ( id , parent_id , title , description , date_created , type ) VALUES ( 1 , - 1 , ' Linux ' , ' Collections of GNU/Linux-related feeds. ' , 1388678961000 , 0 ) ;
2013-12-14 13:45:24 +01:00
-- !
2014-01-02 19:24:40 +01:00
INSERT INTO Categories ( id , parent_id , title , description , date_created , type ) VALUES ( 2 , - 1 , ' RSS Guard ' , ' News and updates on RSS Guard. ' , 1388678961000 , 0 ) ;
2013-12-14 13:45:24 +01:00
-- !
2014-01-02 19:24:40 +01:00
INSERT INTO Feeds ( title , description , date_created , category , encoding , url , type ) VALUES ( ' Linux Today ' , ' Linux Today - Linux News on Internet Time. ' , 1388678961000 , 1 , ' UTF-8 ' , ' http://feeds.feedburner.com/linuxtoday/linux?format=xml ' , 1 ) ;
2013-12-14 13:45:24 +01:00
-- !
2014-01-02 19:24:40 +01:00
INSERT INTO Feeds ( title , description , date_created , category , encoding , url , type ) VALUES ( ' LinuxInsider ' , ' LinuxInsider: Linux News & Information from Around the World. ' , 1388678961000 , 1 , ' UTF-8 ' , ' http://www.linuxinsider.com/perl/syndication/rssfull.pl ' , 2 ) ;
2013-12-14 13:45:24 +01:00
-- !
2014-01-02 19:24:40 +01:00
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. ' , 1388678961000 , 1 , ' UTF-8 ' , ' http://lxer.com/module/newswire/headlines.rss ' , 2 ) ;
2013-12-28 21:20:34 +01:00
-- !
2014-01-02 19:24:40 +01:00
INSERT INTO Feeds ( title , description , date_created , category , encoding , url , type ) VALUES ( ' Recent Commits ' , ' Recent commits for RSS Guard project. ' , 1388678961000 , 2 , ' UTF-8 ' , ' https://github.com/martinrotter/rssguard/commits/master.atom ' , 3 ) ;
2013-12-14 13:45:24 +01:00
-- !
2014-01-02 19:24:40 +01:00
INSERT INTO Feeds ( title , description , date_created , category , encoding , url , type ) VALUES ( ' Releases ' , ' Releases for RSS Guard. ' , 1388678961000 , 2 , ' UTF-8 ' , ' https://github.com/martinrotter/rssguard/releases.atom ' , 3 ) ;
2013-12-14 13:45:24 +01:00
-- !
2014-01-02 19:24:40 +01:00
INSERT INTO Feeds ( title , description , date_created , category , encoding , url , type ) VALUES ( ' Author '' s Activity ' , ' RSS Guard author public activity overview. ' , 1388678961000 , 2 , ' UTF-8 ' , ' https://github.com/martinrotter.atom ' , 3 ) ;