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.
12 lines
355 B
MySQL
12 lines
355 B
MySQL
12 years ago
|
begin;
|
||
|
|
||
|
alter table ttrss_user_entries add column last_marked timestamp;
|
||
|
alter table ttrss_user_entries add column last_published timestamp;
|
||
|
|
||
|
update ttrss_user_entries set last_published = last_read where published = true;
|
||
|
update ttrss_user_entries set last_marked = last_read where marked = true;
|
||
|
|
||
|
update ttrss_version set schema_version = 105;
|
||
|
|
||
|
commit;
|