Mandatory index added

This commit is contained in:
Michael 2021-10-19 01:55:24 +00:00
parent 235eab0d99
commit 6d0f6babe3
3 changed files with 23 additions and 20 deletions

View File

@ -723,6 +723,7 @@ CREATE TABLE IF NOT EXISTS `intro` (
`ignore` boolean NOT NULL DEFAULT '0' COMMENT '', `ignore` boolean NOT NULL DEFAULT '0' COMMENT '',
PRIMARY KEY(`id`), PRIMARY KEY(`id`),
INDEX `contact-id` (`contact-id`), INDEX `contact-id` (`contact-id`),
INDEX `suggest-cid` (`suggest-cid`),
INDEX `uid` (`uid`), INDEX `uid` (`uid`),
FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE, FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE,
FOREIGN KEY (`contact-id`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE, FOREIGN KEY (`contact-id`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE,

View File

@ -25,9 +25,10 @@ Indexes
------------ ------------
| Name | Fields | | Name | Fields |
| ---------- | ---------- | | ----------- | ----------- |
| PRIMARY | id | | PRIMARY | id |
| contact-id | contact-id | | contact-id | contact-id |
| suggest-cid | suggest-cid |
| uid | uid | | uid | uid |
Foreign Keys Foreign Keys

View File

@ -788,6 +788,7 @@ return [
"indexes" => [ "indexes" => [
"PRIMARY" => ["id"], "PRIMARY" => ["id"],
"contact-id" => ["contact-id"], "contact-id" => ["contact-id"],
"suggest-cid" => ["suggest-cid"],
"uid" => ["uid"], "uid" => ["uid"],
] ]
], ],