fix migration table name

This commit is contained in:
xiaomlove
2023-04-12 02:07:13 +08:00
parent 1ba01b2713
commit 5e27a52db7

View File

@@ -16,7 +16,7 @@ return new class extends Migration
Schema::table('agent_allowed_family', function (Blueprint $table) {
$table->string("comment")->nullable(true)->change();
});
Schema::table('agent_deny_family', function (Blueprint $table) {
Schema::table('agent_allowed_exception', function (Blueprint $table) {
$table->string("comment")->nullable(true)->change();
});
}