mirror of
https://git.tt-rss.org/fox/tt-rss.git
synced 2025-08-06 22:27:42 +02:00
6 lines
223 B
SQL
6 lines
223 B
SQL
alter table ttrss_feedbrowser_cache add column title text;
|
|
update ttrss_feedbrowser_cache set title = '';
|
|
alter table ttrss_feedbrowser_cache change title title text not null;
|
|
|
|
update ttrss_version set schema_version = 52;
|