Skip to content

Commit

Permalink
Remove unused migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdnbrk committed Nov 21, 2024
1 parent b307d47 commit 8fa8e18
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 167 deletions.
49 changes: 0 additions & 49 deletions database/migrations/0001_01_01_000000_create_users_table.php

This file was deleted.

35 changes: 0 additions & 35 deletions database/migrations/0001_01_01_000001_create_cache_table.php

This file was deleted.

25 changes: 25 additions & 0 deletions database/migrations/0001_01_01_000002_create_failed_jobs_table.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<?php

use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

return new class extends Migration {
public function up(): void
{
Schema::create('failed_jobs', function (Blueprint $table) {
$table->id();
$table->string('uuid')->unique();
$table->text('connection');
$table->text('queue');
$table->longText('payload');
$table->longText('exception');
$table->timestamp('failed_at')->useCurrent();
});
}

public function down(): void
{
Schema::dropIfExists('failed_jobs');
}
};
57 changes: 0 additions & 57 deletions database/migrations/0001_01_01_000002_create_jobs_table.php

This file was deleted.

26 changes: 0 additions & 26 deletions database/migrations/2024_09_15_234748_create_wallets_table.php

This file was deleted.

0 comments on commit 8fa8e18

Please sign in to comment.