From 5e27a52db72b1813dac18cee04ff1f52ec809db8 Mon Sep 17 00:00:00 2001 From: xiaomlove Date: Wed, 12 Apr 2023 02:07:13 +0800 Subject: [PATCH] fix migration table name --- ...330_change_agent_allow_deny_table_comment_field_nullable.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/migrations/2023_04_12_011330_change_agent_allow_deny_table_comment_field_nullable.php b/database/migrations/2023_04_12_011330_change_agent_allow_deny_table_comment_field_nullable.php index e28a85fb..816a3217 100644 --- a/database/migrations/2023_04_12_011330_change_agent_allow_deny_table_comment_field_nullable.php +++ b/database/migrations/2023_04_12_011330_change_agent_allow_deny_table_comment_field_nullable.php @@ -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(); }); }