comment default null

This commit is contained in:
xiaomlove
2023-04-12 02:22:37 +08:00
parent 5e27a52db7
commit 853c55257c

View File

@@ -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();
});
}