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.
7 lines
265 B
MySQL
7 lines
265 B
MySQL
16 years ago
|
create table ttrss_counters_cache (
|
||
|
feed_id integer not null references ttrss_feeds(id) ON DELETE CASCADE,
|
||
|
owner_uid integer not null references ttrss_users(id) ON DELETE CASCADE,
|
||
|
value integer not null default 0);
|
||
|
|
||
|
update ttrss_version set schema_version = 44;
|