1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-30 12:30:52 +02:00
ttrss/schema/versions/mysql/99.sql

13 lines
372 B
MySQL
Raw Normal View History

2012-11-23 10:22:34 +01:00
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;