From: Andrew Dolgov Date: Wed, 16 Apr 2014 05:02:25 +0000 (+0000) Subject: mysql schema: remove theme_id index pointing nowhere X-Git-Tag: 1.13~44 X-Git-Url: https://git.wh0rd.org/?p=tt-rss.git;a=commitdiff_plain;h=532e1afeeaa37b818bf8f26e1e8ec448acbfcaec mysql schema: remove theme_id index pointing nowhere --- diff --git a/schema/ttrss_schema_mysql.sql b/schema/ttrss_schema_mysql.sql index e11b7110..f8ff944c 100644 --- a/schema/ttrss_schema_mysql.sql +++ b/schema/ttrss_schema_mysql.sql @@ -52,8 +52,7 @@ create table ttrss_users (id integer primary key not null auto_increment, created datetime default null, twitter_oauth longtext default null, otp_enabled boolean not null default false, - resetpass_token varchar(250) default null, - index (theme_id)) ENGINE=InnoDB DEFAULT CHARSET=UTF8; + resetpass_token varchar(250) default null) ENGINE=InnoDB DEFAULT CHARSET=UTF8; insert into ttrss_users (login,pwd_hash,access_level) values ('admin', 'SHA1:5baa61e4c9b93f3f0682250b6cf8331b7ee68fd8', 10);