mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-24 07:41:29 +00:00
add some more indexes
This commit is contained in:
@@ -309,6 +309,8 @@ create table ttrss_prefs (pref_name varchar(250) not null primary key,
|
||||
index(section_id),
|
||||
foreign key (section_id) references ttrss_prefs_sections(id)) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
|
||||
|
||||
create index ttrss_prefs_pref_name_idx on ttrss_prefs(pref_name);
|
||||
|
||||
insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('PURGE_OLD_DAYS', 3, '60', 'Purge old posts after this number of days (0 - disables)',1);
|
||||
|
||||
insert into ttrss_prefs (pref_name,type_id,def_value,short_desc,section_id) values('DEFAULT_UPDATE_INTERVAL', 3, '30', 'Default interval between feed updates',1);
|
||||
@@ -412,6 +414,9 @@ create table ttrss_user_prefs (
|
||||
index (pref_name),
|
||||
foreign key (pref_name) references ttrss_prefs(pref_name) ON DELETE CASCADE) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
|
||||
|
||||
create index ttrss_user_prefs_owner_uid_index on ttrss_user_prefs(owner_uid);
|
||||
create index ttrss_user_prefs_pref_name_idx on ttrss_user_prefs(pref_name);
|
||||
|
||||
create table ttrss_sessions (id varchar(250) unique not null primary key,
|
||||
data text,
|
||||
expire integer not null,
|
||||
|
||||
Reference in New Issue
Block a user