From 614bfdf68ff32eadc63f79cdac4a1f9b7aeb53d8 Mon Sep 17 00:00:00 2001 From: Jakub Onderka Date: Mon, 7 Sep 2020 22:05:17 +0200 Subject: [PATCH] fix: [db_schema] Missing index for feeds.orgc_id --- db_schema.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/db_schema.json b/db_schema.json index fe9b191bc..64929140c 100644 --- a/db_schema.json +++ b/db_schema.json @@ -6879,7 +6879,8 @@ }, "feeds": { "id": true, - "input_source": false + "input_source": false, + "orgc_id": false }, "fuzzy_correlate_ssdeep": { "id": true, @@ -7167,4 +7168,4 @@ } }, "db_version": "56" -} \ No newline at end of file +}