2010-11-10 08:45:28 +00:00
|
|
|
begin;
|
|
|
|
|
2010-11-09 19:41:13 +00:00
|
|
|
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;
|
2010-11-10 08:45:28 +00:00
|
|
|
|
|
|
|
commit;
|