Not null violation: 7 ERROR: null value in column - Laravel 5.8

Not null violation: 7 ERROR: null value in column - Laravel 5.8

我不明白,我修改了我的 table 以添加这些列

Schema::table('clusters', function($table)
{

    $table->string('ssaEnabled',1)->default('0');
    $table->string('ssaBackendUrl')->default(NULL);
    $table->string('ssaPortalApiUrl')->default(NULL);

});

在我的商店里() 我有这个

$cluster->ssaEnabled            = Input::get('ssaEnabled','0');
$cluster->ssaBackendUrl         = Input::get('ssaBackendUrl','');
$cluster->ssaPortalApiUrl       = Input::get('ssaPortalApiUrl','');

$cluster->save();

我不断得到

prod.ERROR: SQLSTATE[23502]: Not null violation: 7 ERROR: null value in column "ssaBackendUrl" violates not-null constraint

为什么 ??

  1. 我已经将其设置为默认值 null
  2. 我还在第二个参数的 Input::get() 中添加了一个备份值作为空字符串

有什么提示吗?

我怎样才能阻止它?

  • 创建新迁移

php artisan make:migration add_nullable_to_ssaBackendUrl_column_on_clusters_table --table=clusters

Updating Column Attributes

The change method allows you to modify the type and attributes of existing columns.


Schema::table('clusters', function($table)
{

    $table->string('ssaBackendUrl')->nullable()->change();

});
  • 运行迁移

php artisan migrate