summaryrefslogtreecommitdiff
path: root/schema
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-11-23 06:15:53 +0100
committerAndrew Dolgov <[email protected]>2005-11-23 06:15:53 +0100
commit4a9a8bd8849a45d72b0087967bf8dc18c90d1d68 (patch)
treecae01f49ee860208c0748762469a4ab3b98ea76d /schema
parent4fb4b94f0d3a83f73e57d4b9a3ae4e26d9f80598 (diff)
add schema for feed categories
Diffstat (limited to 'schema')
-rw-r--r--schema/ttrss_schema_mysql.sql9
-rw-r--r--schema/ttrss_schema_pgsql.sql5
2 files changed, 13 insertions, 1 deletions
diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql
index 3ac062c71..33c65bf49 100644
--- a/schema/ttrss_schema_mysql.sql
+++ b/schema/ttrss_schema_mysql.sql
@@ -7,6 +7,7 @@ drop table if exists ttrss_entries;
drop table if exists ttrss_feeds;
drop table if exists ttrss_labels;
drop table if exists ttrss_filters;
+drop table if exists ttrss_feed_categories;
drop table if exists ttrss_user_prefs;
drop table if exists ttrss_users;
@@ -19,9 +20,13 @@ create table ttrss_users (id integer primary key not null auto_increment,
insert into ttrss_users (login,pwd_hash,access_level) values ('admin', 'password', 10);
+create table ttrss_feed_categories(id integer not null primary key,
+ title varchar(200) not null);
+
create table ttrss_feeds (id integer not null auto_increment primary key,
owner_uid integer not null,
title varchar(200) not null,
+ cat_id integer default null,
feed_url varchar(250) not null,
icon_url varchar(250) not null default '',
update_interval integer not null default 0,
@@ -30,7 +35,9 @@ create table ttrss_feeds (id integer not null auto_increment primary key,
last_error text not null default '',
site_url varchar(250) not null default '',
index(owner_uid),
- foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE) TYPE=InnoDB;
+ foreign key (owner_uid) references ttrss_users(id) ON DELETE CASCADE,
+ index(cat_id),
+ foreign key (cat_id) references ttrss_feed_categories(id)) TYPE=InnoDB;
insert into ttrss_feeds (owner_uid,title,feed_url) values (1,'Footnotes', 'http://gnomedesktop.org/node/feed');
insert into ttrss_feeds (owner_uid,title,feed_url) values (1,'Latest Linux Kernel Versions','http://kernel.org/kdist/rss.xml');
diff --git a/schema/ttrss_schema_pgsql.sql b/schema/ttrss_schema_pgsql.sql
index 107b094d0..3e4ef6dcf 100644
--- a/schema/ttrss_schema_pgsql.sql
+++ b/schema/ttrss_schema_pgsql.sql
@@ -7,6 +7,7 @@ drop table ttrss_entries;
drop table ttrss_feeds;
drop table ttrss_labels;
drop table ttrss_filters;
+drop table ttrss_feed_categories;
drop table ttrss_user_prefs;
drop table ttrss_users;
@@ -19,9 +20,13 @@ create table ttrss_users (id serial not null primary key,
insert into ttrss_users (login,pwd_hash,access_level) values ('admin', 'password', 10);
+create table ttrss_feed_categories(id serial not null primary key,
+ title varchar(200) not null);
+
create table ttrss_feeds (id serial not null primary key,
owner_uid integer not null references ttrss_users(id) on delete cascade,
title varchar(200) not null,
+ cat_id integer references ttrss_feed_categories(id) default null,
feed_url varchar(250) not null,
icon_url varchar(250) not null default '',
update_interval integer not null default 0,