mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-31 03:51:29 +00:00
add index on ttrss_enclosures(post_id)
This commit is contained in:
@@ -235,6 +235,8 @@ create table ttrss_enclosures (id serial not null primary key,
|
||||
duration text not null,
|
||||
post_id integer references ttrss_entries(id) ON DELETE cascade NOT NULL);
|
||||
|
||||
create index ttrss_enclosures_post_id_idx on ttrss_enclosures(post_id);
|
||||
|
||||
create table ttrss_settings_profiles(id serial not null primary key,
|
||||
title varchar(250) not null,
|
||||
owner_uid integer not null references ttrss_users(id) on delete cascade);
|
||||
|
||||
Reference in New Issue
Block a user