php – 如果索引存在于Laravel迁移中,如何检查索引?

前端之家收集整理的这篇文章主要介绍了php – 如果索引存在于Laravel迁移中,如何检查索引?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

在准备迁移时,尝试检查表上是否存在唯一索引,如何实现?

Schema::table('persons',function (Blueprint $table) {
    if ($table->hasIndex('persons_body_unique')) {
        $table->dropUnique('persons_body_unique');
    }
})

看起来像上面的东西. (显然,hasIndex()不存在)

最佳答案
使用Laravel使用的“doctrine-dbal”是更好的解决方案:

Schema::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");
})
原文链接:https://www.f2er.com/mysql/434128.html

猜你在找的MySQL相关文章