1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-05 05:09:16 +00:00

a variety of ccache work

This commit is contained in:
Andrew Dolgov
2009-01-16 14:11:19 +01:00
parent 2627f2d045
commit 8a4c759ea3
7 changed files with 182 additions and 33 deletions

View File

@@ -0,0 +1,19 @@
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;