加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 站长学院 > MySql教程 > 正文

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

发布时间:2020-12-11 23:43:59 所属栏目:MySql教程 来源:网络整理
导读:在准备迁移时,尝试检查表上是否存在唯一索引,如何实现? Schema::table('persons',function (Blueprint $table) { if ($table-hasIndex('persons_body_unique')) { $table-dropUnique('persons_body_unique'); }}) 看起来像上面的东西. (显然,hasIndex()不存

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

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");
})

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读