我已经有一个表名 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');
});
}
原文由 Md.Sukel Ali 发布,翻译遵循 CC BY-SA 4.0 许可协议
你需要这样的东西