summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2022-06-19 19:00:04 +0300
committerAndrew Dolgov <[email protected]>2022-06-19 19:00:04 +0300
commit24256c75cb31991058f88b06b98881ca2454619a (patch)
tree3c34a7bae8728b24299e82af98ec1af18ee51135
parentd44db02017748c30fc06a91de4c00060e3ee4e29 (diff)
set column indexes according to InnoDB limitations
-rw-r--r--sql/mysql/schema.sql4
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/mysql/schema.sql b/sql/mysql/schema.sql
index 0df2d9a..eda9f52 100644
--- a/sql/mysql/schema.sql
+++ b/sql/mysql/schema.sql
@@ -6,7 +6,7 @@ create table ttrss_plugin_reddit_delay_cache (id integer not null primary key au
item text not NULL,
orig_ts datetime not null) ENGINE=InnoDB DEFAULT CHARSET=UTF8;
-create index ttrss_plugin_reddit_delay_cache_link_idx on ttrss_plugin_reddit_delay_cache(link);
+create index ttrss_plugin_reddit_delay_cache_link_idx on ttrss_plugin_reddit_delay_cache(link(768));
create index ttrss_plugin_reddit_delay_cache_feed_id_idx on ttrss_plugin_reddit_delay_cache(feed_id);
-create unique index ttrss_plugin_reddit_delay_cache_idx on ttrss_plugin_reddit_delay_cache(feed_id, link);
+create unique index ttrss_plugin_reddit_delay_cache_idx on ttrss_plugin_reddit_delay_cache(feed_id, link(768));