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.
20 lines
507 B
MySQL
20 lines
507 B
MySQL
16 years ago
|
begin;
|
||
|
|
||
|
drop table ttrss_counters_cache;
|
||
|
|
||
|
create table ttrss_counters_cache (
|
||
|
feed_id integer not null,
|
||
|
owner_uid integer not null references ttrss_users(id) ON DELETE CASCADE,
|
||
|
updated timestamp not null,
|
||
|
value integer not null default 0);
|
||
|
|
||
|
create table ttrss_cat_counters_cache (
|
||
|
feed_id integer not null,
|
||
|
owner_uid integer not null references ttrss_users(id) ON DELETE CASCADE,
|
||
|
updated timestamp not null,
|
||
|
value integer not null default 0);
|
||
|
|
||
|
update ttrss_version set schema_version = 50;
|
||
|
|
||
|
commit;
|