我在laravel 5.6中创建了迁移表。
我需要通过迁移创建一个独特的索引。
我的代码是:
$table->index([
'system',
'code',
'city',
'seat',
'type'
], 'PrimaryPayment');
但是在跑完migrate
之后。在phpmyadmin -> table -> table_name -> indexes
显示unique: No
如何创建唯一索引?
答案 0 :(得分:2)
您可以在迁移时使用unique()方法:
$table->string('email')->unique();
或者像compound unique
索引那样:
$table->unique([
'system',
'code',
'city',
'seat',
'type'
], 'PrimaryPayment');