summaryrefslogtreecommitdiff
path: root/schema/versions/mysql/72.sql
blob: 2995afda377a2693001b967325d8229300b0eed0 (plain)
1
2
3
4
5
6
7
8
9
begin;

alter table ttrss_user_entries add column tag_cache text;
update ttrss_user_entries set tag_cache = '';
alter table ttrss_user_entries change tag_cache tag_cache text not null;

update ttrss_version set schema_version = 72;

commit;