1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-02-09 08:21:34 +00:00

start work on support for technorati tags, schema uses cascade deletes for pgsql

This commit is contained in:
Andrew Dolgov
2005-09-09 05:52:36 +01:00
parent e9e4c6e23a
commit eb36b4eb55
4 changed files with 49 additions and 7 deletions

View File

@@ -1,3 +1,4 @@
drop table if exists ttrss_tags;
drop table if exists ttrss_entries;
drop table if exists ttrss_feeds;
@@ -69,3 +70,7 @@ create table ttrss_labels (id integer primary key auto_increment,
insert into ttrss_labels (sql_exp,description) values ('unread = true',
'Unread articles');
create table ttrss_tags (id integer primary key auto_increment,
tag_name varchar(250) not null,
post_id integer references ttrss_entries(id)) TYPE=InnoDB;