在准备迁移时,尝试检查表上是否存在唯一索引,如何实现?
Schema::table('persons',function (Blueprint $table) {
if ($table->hasIndex('persons_body_unique')) {
$table->dropUnique('persons_body_unique');
}
})
看起来像上面的东西. (显然,hasIndex()不存在)
最佳答案
使用Laravel使用的“doctrine-dbal”是更好的解决方案:
原文链接:https://www.f2er.com/mysql/434128.htmlSchema::table('persons',function (Blueprint $table) {
$sm = Schema::getConnection()->getDoctrineSchemaManager();
$indexesFound = $sm->listTableIndexes('persons');
if(array_key_exists("persons_body_unique",$indexesFound))
$table->dropUnique("persons_body_unique");
})