ttrss/sql/mysql/migrations/136.sql

10 lines
251 B
MySQL
Raw Normal View History

begin;
alter table ttrss_archived_feeds add column created datetime;
update ttrss_archived_feeds set created = NOW();
2019-03-06 18:35:34 +00:00
alter table ttrss_archived_feeds change created created datetime not null;
update ttrss_version set schema_version = 136;
commit;