Skip to content

Commit

Permalink
Remove comments and line-break on bracket
Browse files Browse the repository at this point in the history
  • Loading branch information
stevebauman committed Sep 19, 2024
1 parent 09d1079 commit 09f7587
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions database/migrations/create_workflow_tables.php.stub
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down Expand Up @@ -47,9 +45,6 @@ return new class extends Migration {
});
}

/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists(config('venture.jobs_table'));
Expand Down

0 comments on commit 09f7587

Please sign in to comment.