Describe the bug
There is an index that duplicates the primary key.
To Reproduce
Steps to reproduce the behavior:
- Install the app
Expected behavior
Efficient index usage
|
$table->setPrimaryKey(['nid']); |
|
$table->addUniqueIndex(['id_prim']); |
|
$table->addUniqueIndex(['nid']); |
Describe the bug
There is an index that duplicates the primary key.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
Efficient index usage
social/lib/Migration/Version1000Date20221118000001.php
Lines 699 to 701 in 256c106