summaryrefslogtreecommitdiff
path: root/schema/ttrss_schema_mysql.sql
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2011-04-20 20:05:10 +0400
committerAndrew Dolgov <[email protected]>2011-04-20 20:05:10 +0400
commit109662e12f858bf067f14a37942a1106c900b527 (patch)
treed34f48dcb375bf8c79639aa2cd089b5571af8ebe /schema/ttrss_schema_mysql.sql
parent6f907113ef20b09976b1fddbc698a49dbe283519 (diff)
feedbrowser_cache & linked feeds: add site url (bump schema)
Diffstat (limited to 'schema/ttrss_schema_mysql.sql')
-rw-r--r--schema/ttrss_schema_mysql.sql4
1 files changed, 3 insertions, 1 deletions
diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql
index 61fcff450..9582c4687 100644
--- a/schema/ttrss_schema_mysql.sql
+++ b/schema/ttrss_schema_mysql.sql
@@ -254,7 +254,7 @@ create table ttrss_tags (id integer primary key auto_increment,
create table ttrss_version (schema_version int not null) TYPE=InnoDB DEFAULT CHARSET=UTF8;
-insert into ttrss_version values (84);
+insert into ttrss_version values (85);
create table ttrss_enclosures (id integer primary key auto_increment,
content_url text not null,
@@ -404,6 +404,7 @@ create table ttrss_sessions (id varchar(250) unique not null primary key,
create table ttrss_feedbrowser_cache (
feed_url text not null,
+ site_url text not null,
title text not null,
subscribers integer not null) DEFAULT CHARSET=UTF8;
@@ -437,6 +438,7 @@ create table ttrss_linked_instances (id integer not null primary key auto_increm
create table ttrss_linked_feeds (
feed_url text not null,
+ site_url text not null,
title text not null,
created datetime not null,
updated datetime not null,