diff options
Diffstat (limited to 'core/Application.php')
-rw-r--r-- | core/Application.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/Application.php b/core/Application.php index 1a7cf8aa10c..5ba07e2cb48 100644 --- a/core/Application.php +++ b/core/Application.php @@ -119,16 +119,16 @@ class Application extends App { if ($schema->hasTable('cards')) { $table = $schema->getTable('cards'); - if (!$table->hasIndex('addressbookid')) { - $subject->addHintForMissingSubject($table->getName(), 'addressbookid'); + if (!$table->hasIndex('cards_abid')) { + $subject->addHintForMissingSubject($table->getName(), 'cards_abid'); } } if ($schema->hasTable('cards_properties')) { $table = $schema->getTable('cards_properties'); - if (!$table->hasIndex('addressbookid')) { - $subject->addHintForMissingSubject($table->getName(), 'addressbookid'); + if (!$table->hasIndex('cards_prop_abid')) { + $subject->addHintForMissingSubject($table->getName(), 'cards_prop_abid'); } } } |