1
1
Fork 0

Merge pull request #10895 from annando/index

Mandatory index added
This commit is contained in:
Philipp 2021-10-19 07:36:54 +02:00 committed by GitHub
commit 6a7fc07cbf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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"],
] ]
], ],