mirror of
https://github.com/YunoHost-Apps/ttrss_ynh.git
synced 2024-10-01 13:34:46 +02:00
8 lines
206 B
PL/PgSQL
8 lines
206 B
PL/PgSQL
begin;
|
|
|
|
alter table ttrss_feeds add column favicon_last_checked datetime;
|
|
alter table ttrss_feeds alter column favicon_last_checked set default null;
|
|
|
|
update ttrss_version set schema_version = 92;
|
|
|
|
commit;
|