summaryrefslogtreecommitdiff
path: root/schema/ttrss_schema_pgsql.sql
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2015-11-18 14:33:47 +0300
committerAndrew Dolgov <[email protected]>2015-11-18 14:33:47 +0300
commit6497fb65b439f02cf145c2d0eb4e40803641fbb4 (patch)
tree46d7da0b02152b615f411da6b4ded924e8f22f0c /schema/ttrss_schema_pgsql.sql
parentee4c4602726a1d1064c96414a8e4df0308f3be62 (diff)
fix ttrss_feeds.last_update defaulting to 0 on mysql, set to null instead
bump schema
Diffstat (limited to 'schema/ttrss_schema_pgsql.sql')
-rw-r--r--schema/ttrss_schema_pgsql.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/schema/ttrss_schema_pgsql.sql b/schema/ttrss_schema_pgsql.sql
index b53d375cc..237f1d3fb 100644
--- a/schema/ttrss_schema_pgsql.sql
+++ b/schema/ttrss_schema_pgsql.sql
@@ -263,7 +263,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 (129);
+insert into ttrss_version values (130);
create table ttrss_enclosures (id serial not null primary key,
content_url text not null,