mirror of
https://github.com/friendica/friendica
synced 2024-11-09 17:02:54 +00:00
Mandatory index added
This commit is contained in:
parent
235eab0d99
commit
6d0f6babe3
3 changed files with 23 additions and 20 deletions
|
@ -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,
|
||||
|
|
|
@ -25,9 +25,10 @@ Indexes
|
|||
------------
|
||||
|
||||
| Name | Fields |
|
||||
| ---------- | ---------- |
|
||||
| ----------- | ----------- |
|
||||
| PRIMARY | id |
|
||||
| contact-id | contact-id |
|
||||
| suggest-cid | suggest-cid |
|
||||
| uid | uid |
|
||||
|
||||
Foreign Keys
|
||||
|
|
|
@ -788,6 +788,7 @@ return [
|
|||
"indexes" => [
|
||||
"PRIMARY" => ["id"],
|
||||
"contact-id" => ["contact-id"],
|
||||
"suggest-cid" => ["suggest-cid"],
|
||||
"uid" => ["uid"],
|
||||
]
|
||||
],
|
||||
|
|
Loading…
Reference in a new issue