我在下面定义了一个DB表结构。
如果要修改表列:
从
$table->string('active',1);
收件人:
$table->string('active',1)->nullable(); // allow null values
每次运行迁移脚本时,我的表都将被截断。
有没有一种方法可以定义一个表结构,并在不删除该表的情况下将其修改为正确的结构?
下面是我的代码:
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class VTUser extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('Z_user', function (Blueprint $table) {
$table->bigIncrements('id');
$table->string('nickname')->unique();
$table->string('email')->unique();
$table->string('passhash');
$table->string('keygen');
$table->string('active',1)->nullable();
$table->string('banned',1);
$table->string('admin',1);
$table->string('step',1);
// $table->rememberToken();
// $table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('Z_user');
}
}
2条答案
按热度按时间xkftehaa1#
有两种方法可以达到这个目的-
1.您可以使用
php artisan migrate:rollback --step=1
回滚迁移,然后使用$table->string('active',1)->nullable();
更改up函数1.创建一个新迁移,通过在此新迁移中执行
$table->string('active',1)->nullable();
来更新表。gxwragnw2#
试试看...