You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
295 B
MySQL
11 lines
295 B
MySQL
7 years ago
|
begin;
|
||
|
|
||
|
alter table ttrss_feeds add column last_modified text;
|
||
|
update ttrss_feeds set last_modified = '';
|
||
|
alter table ttrss_feeds alter column last_modified set not null;
|
||
|
alter table ttrss_feeds alter column last_modified set default '';
|
||
|
|
||
|
UPDATE ttrss_version SET schema_version = 132;
|
||
|
|
||
|
commit;
|