检查Laravel迁移文件中是否存在列

Md.*_*Ali 6 php sql laravel

我已经有了一个表名,table_one.现在我想再添加两列。到目前为止一切正常。但是在我的方法中,我想检查表中是否存在某列,例如dropIfExists('table').

/**
 * Run the migrations.
 *
 * @return void
 */
public function up()
{
    Schema::table('table_one', function (Blueprint $table) {
        $table->string('column_one')->nullable();
        $table->string('column_two')->nullable();
    });
}

/**
 * Reverse the migrations.
 *
 * @return void
 */
public function down()
{
    Schema::table('table_one', function (Blueprint $table) {
        // in here i want to check column_one and column_two exists or not
        $table->dropColumn('column_one');
        $table->dropColumn('column_two');
    });
}
Run Code Online (Sandbox Code Playgroud)

Ism*_*oev 13

你需要像这样的东西

  public function down()
    {
        if (Schema::hasColumn('users', 'phone'))
        {
            Schema::table('users', function (Blueprint $table)
            {
                $table->dropColumn('phone');
            });
        }
    }
Run Code Online (Sandbox Code Playgroud)

  • 谢谢。你的解决方案效果很好。但我不喜欢这种方法。我想要类似 dropIfExists('column') 的东西。 (4认同)

Mar*_*lio 12

您可以创建自己的“dropColumnIfExists()”函数来检查列是否存在,然后删除它:

function myDropColumnIfExists($myTable, $column)
{
    if (Schema::hasColumn($myTable, $column)) //check the column
    {
        Schema::table($myTable, function (Blueprint $table)
        {
            $table->dropColumn($column); //drop it
        });
    }

}
Run Code Online (Sandbox Code Playgroud)

并在“down()”函数上使用它,如下所示:

public function down()
{
    myDropColumnIfExists('table_one', 'column_two');
    myDropColumnIfExists('table_one', 'column_one');
}
Run Code Online (Sandbox Code Playgroud)