summaryrefslogtreecommitdiff
path: root/schema/ttrss_schema_pgsql.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_pgsql.sql
parent6f907113ef20b09976b1fddbc698a49dbe283519 (diff)
feedbrowser_cache & linked feeds: add site url (bump schema)
Diffstat (limited to 'schema/ttrss_schema_pgsql.sql')
-rw-r--r--schema/ttrss_schema_pgsql.sql4
1 files changed, 3 insertions, 1 deletions
diff --git a/schema/ttrss_schema_pgsql.sql b/schema/ttrss_schema_pgsql.sql
index 67fe8a8d0..687426534 100644
--- a/schema/ttrss_schema_pgsql.sql
+++ b/schema/ttrss_schema_pgsql.sql
@@ -225,7 +225,7 @@ create index ttrss_tags_post_int_id_idx on ttrss_tags(post_int_id);
create table ttrss_version (schema_version int not null);
-insert into ttrss_version values (84);
+insert into ttrss_version values (85);
create table ttrss_enclosures (id serial not null primary key,
content_url text not null,
@@ -368,6 +368,7 @@ create function SUBSTRING_FOR_DATE(timestamp, int, int) RETURNS text AS 'SELECT
create table ttrss_feedbrowser_cache (
feed_url text not null primary key,
title text not null,
+ site_url text not null,
subscribers integer not null);
create table ttrss_labels2 (id serial not null primary key,
@@ -397,6 +398,7 @@ create table ttrss_linked_instances (id serial not null primary key,
create table ttrss_linked_feeds (
feed_url text not null,
+ site_url text not null,
title text not null,
created timestamp not null,
updated timestamp not null,