summaryrefslogtreecommitdiff
path: root/schema/versions/mysql/99.sql
blob: d7f9e02307f2271fbabb4e5f6eefd2f79e46fc17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
begin;

alter table ttrss_feeds add column cache_content bool;
update ttrss_feeds set cache_content = false;
alter table ttrss_feeds change cache_content cache_content bool not null;
alter table ttrss_feeds alter column cache_content set default false;

alter table ttrss_entries add column cached_content longtext;

update ttrss_version set schema_version = 99;

commit;