mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 22:45:56 +00:00
schema: add some indexes
This commit is contained in:
@@ -106,12 +106,18 @@ create table ttrss_counters_cache (
|
|||||||
updated timestamp not null,
|
updated timestamp not null,
|
||||||
value integer not null default 0);
|
value integer not null default 0);
|
||||||
|
|
||||||
|
create index ttrss_counters_cache_feed_id_idx on ttrss_counters_cache(feed_id);
|
||||||
|
create index ttrss_counters_cache_owner_uid_idx on ttrss_counters_cache(owner_uid);
|
||||||
|
create index ttrss_counters_cache_value_idx on ttrss_counters_cache(value);
|
||||||
|
|
||||||
create table ttrss_cat_counters_cache (
|
create table ttrss_cat_counters_cache (
|
||||||
feed_id integer not null,
|
feed_id integer not null,
|
||||||
owner_uid integer not null references ttrss_users(id) ON DELETE CASCADE,
|
owner_uid integer not null references ttrss_users(id) ON DELETE CASCADE,
|
||||||
updated timestamp not null,
|
updated timestamp not null,
|
||||||
value integer not null default 0);
|
value integer not null default 0);
|
||||||
|
|
||||||
|
create index ttrss_cat_counters_cache_owner_uid_idx on ttrss_cat_counters_cache(owner_uid);
|
||||||
|
|
||||||
create table ttrss_entries (id serial not null primary key,
|
create table ttrss_entries (id serial not null primary key,
|
||||||
title text not null,
|
title text not null,
|
||||||
guid text not null unique,
|
guid text not null unique,
|
||||||
|
|||||||
Reference in New Issue
Block a user