🧹 Duster

This commit is contained in:
Rico van Zelst
2024-06-18 12:55:10 +02:00
parent f3ded81a62
commit a0b37a4ab4
39 changed files with 191 additions and 232 deletions

View File

@@ -6,9 +6,6 @@ use Illuminate\Support\Facades\Schema;
return new class() extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('users', function (Blueprint $table) {
@@ -22,9 +19,6 @@ return new class() extends Migration
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('users');

View File

@@ -6,9 +6,6 @@ use Illuminate\Support\Facades\Schema;
return new class() extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('password_reset_tokens', function (Blueprint $table) {
@@ -18,9 +15,6 @@ return new class() extends Migration
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('password_reset_tokens');

View File

@@ -6,9 +6,6 @@ use Illuminate\Support\Facades\Schema;
return new class() extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('failed_jobs', function (Blueprint $table) {
@@ -22,9 +19,6 @@ return new class() extends Migration
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('failed_jobs');

View File

@@ -6,9 +6,6 @@ use Illuminate\Support\Facades\Schema;
return new class() extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('personal_access_tokens', function (Blueprint $table) {
@@ -23,9 +20,6 @@ return new class() extends Migration
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('personal_access_tokens');

View File

@@ -6,9 +6,6 @@ use Laravel\Pulse\Support\PulseMigration;
return new class() extends PulseMigration
{
/**
* Run the migrations.
*/
public function up(): void
{
if (! $this->shouldRun()) {
@@ -72,9 +69,6 @@ return new class() extends PulseMigration
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('pulse_values');

View File

@@ -6,9 +6,6 @@ use Illuminate\Support\Facades\Schema;
return new class() extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('champions', function (Blueprint $table) {
@@ -32,9 +29,6 @@ return new class() extends Migration
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('champions');

View File

@@ -6,9 +6,6 @@ use Illuminate\Support\Facades\Schema;
return new class() extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('champion_skins', function (Blueprint $table) {
@@ -39,9 +36,6 @@ return new class() extends Migration
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('champion_skins');

View File

@@ -6,9 +6,6 @@ use Illuminate\Support\Facades\Schema;
return new class() extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('skin_chromas', function (Blueprint $table) {
@@ -25,9 +22,6 @@ return new class() extends Migration
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('skin_chromas');

View File

@@ -6,9 +6,6 @@ use Illuminate\Support\Facades\Schema;
return new class() extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('champion_skins', function (Blueprint $table) {
@@ -16,9 +13,6 @@ return new class() extends Migration
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('champion_skins', function (Blueprint $table) {

View File

@@ -6,9 +6,6 @@ use Illuminate\Support\Facades\Schema;
return new class() extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('champion_skins', function (Blueprint $table) {
@@ -16,9 +13,6 @@ return new class() extends Migration
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('champion_skins', function (Blueprint $table) {

View File

@@ -6,9 +6,6 @@ use Illuminate\Support\Facades\Schema;
return new class() extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('champion_skins', function (Blueprint $table) {
@@ -16,9 +13,6 @@ return new class() extends Migration
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('champion_skins', function (Blueprint $table) {

View File

@@ -6,9 +6,6 @@ use Illuminate\Support\Facades\Schema;
return new class() extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('skin_chromas', function (Blueprint $table) {
@@ -16,9 +13,6 @@ return new class() extends Migration
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('skin_chromas', function (Blueprint $table) {

View File

@@ -6,9 +6,6 @@ use Illuminate\Support\Facades\Schema;
return new class() extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('champion_roles', function (Blueprint $table) {
@@ -22,9 +19,6 @@ return new class() extends Migration
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('champion_roles');

View File

@@ -6,9 +6,6 @@ use Illuminate\Support\Facades\Schema;
return new class() extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('champions', function (Blueprint $table) {
@@ -16,9 +13,6 @@ return new class() extends Migration
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('champions', function (Blueprint $table) {

View File

@@ -6,9 +6,6 @@ use Illuminate\Support\Facades\Schema;
return new class() extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('champion_skins', function (Blueprint $table) {
@@ -16,9 +13,6 @@ return new class() extends Migration
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('champion_skins', function (Blueprint $table) {

View File

@@ -6,9 +6,6 @@ use Illuminate\Support\Facades\Schema;
return new class() extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('skin_chromas', function (Blueprint $table) {
@@ -16,9 +13,6 @@ return new class() extends Migration
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('skin_chromas', function (Blueprint $table) {

View File

@@ -6,9 +6,6 @@ use Illuminate\Support\Facades\Schema;
return new class() extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('sessions', function (Blueprint $table) {
@@ -21,9 +18,6 @@ return new class() extends Migration
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('sessions');

View File

@@ -6,9 +6,6 @@ use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('streamers', function (Blueprint $table) {
@@ -24,9 +21,6 @@ return new class extends Migration
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('streamers');

View File

@@ -6,9 +6,6 @@ use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('champion_images', function (Blueprint $table) {
@@ -23,9 +20,6 @@ return new class extends Migration
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('champion_images');