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 '',
PRIMARY KEY(`id`),
INDEX `contact-id` (`contact-id`),
INDEX `suggest-cid` (`suggest-cid`),
INDEX `uid` (`uid`),
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,

View File

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

View File

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