summaryrefslogtreecommitdiff
path: root/schema/upgrade-1.1.4-1.1.5-pgsql.sql
blob: 67bb7d86c03148eb7cdcc39c01c8c1f8baf2d840 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
begin;

alter table ttrss_feeds add column rtl_content boolean;

update ttrss_feeds set rtl_content = false;

alter table ttrss_feeds alter column rtl_content set not null;
alter table ttrss_feeds alter column rtl_content set default false;

update ttrss_version set schema_version = 7;

commit;