mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-14 12:30:49 +08:00
comment default null
This commit is contained in:
@@ -14,10 +14,10 @@ return new class extends Migration
|
||||
public function up()
|
||||
{
|
||||
Schema::table('agent_allowed_family', function (Blueprint $table) {
|
||||
$table->string("comment")->nullable(true)->change();
|
||||
$table->string("comment")->nullable(true)->default(null)->change();
|
||||
});
|
||||
Schema::table('agent_allowed_exception', function (Blueprint $table) {
|
||||
$table->string("comment")->nullable(true)->change();
|
||||
$table->string("comment")->nullable(true)->default(null)->change();
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user