1

我正在努力更新现有数据库以使用自动递增的主键。该数据库当前具有带有自定义值的疯狂命名的 PK 字段。我需要先检查每个表,看看它是否有一个 autoinc 字段,然后我想删除它并替换为“id”字段。

我想将其作为迁移来执行,这是我目前所拥有的,但我似乎无法确定第一个 col 是否已经自动递增,因此我可以删除现有的 PK 并替换。我需要将 hasColumn 替换为 firstColumn 然后 getColumnType ...

    foreach ($tableNames as $name)
                if (!Schema::hasColumn($name, 'id')) {
                Schema::table($name, function ($table) {
                    $table->dropPrimary();
                    $table->increments('id')->first();
                });
            }
        }
4

1 回答 1

0

为了解决这个问题,我从控制器运行了以下代码。请注意,我只有两个用于演示的字段 ( id, name)

$result = DB::select("SHOW COLUMNS FROM table_name"); dd($result);

现在之后的输出dd()将有点像这样:

0 => {#162 ▼
    +"Field": "id"
    +"Type": "int(11)"
    +"Null": "NO"
    +"Key": "PRI"
    +"Default": null
    +"Extra": "auto_increment"
  }

1 => {#164 ▼
    +"Field": "name"
    +"Type": "varchar(255)"
    +"Null": "YES"
    +"Key": ""
    +"Default": null
    +"Extra": ""
  }

现在您可以轻松提取"Extra" : "auto_increment",如下所示:

$result = DB::select("SHOW COLUMNS FROM product");
foreach ($result as $key => $value) {
            if($value->Extra == 'auto_increment'){
                //do something
            };
于 2016-12-20T15:59:35.177 回答