diff --git a/database/migrations/create_workflow_tables.php.stub b/database/migrations/create_workflow_tables.php.stub index 3e6b5d9..df7e41f 100644 --- a/database/migrations/create_workflow_tables.php.stub +++ b/database/migrations/create_workflow_tables.php.stub @@ -4,10 +4,8 @@ use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; -return new class extends Migration { - /** - * Run the migrations. - */ +return new class extends Migration +{ public function up(): void { Schema::create(config('venture.workflow_table'), function (Blueprint $table) { @@ -47,9 +45,6 @@ return new class extends Migration { }); } - /** - * Reverse the migrations. - */ public function down(): void { Schema::dropIfExists(config('venture.jobs_table'));