Projekt-Cleanup: Alle Dateien basierend auf .gitignore neu indexiert
This commit is contained in:
@@ -1,37 +0,0 @@
|
||||
<?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('bonuses', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('name');
|
||||
$table->text('description')->nullable();
|
||||
$table->string('image_path')->nullable();
|
||||
$table->string('brand_color')->default('#ffffff');
|
||||
$table->string('hover_color')->default('rgba(255, 255, 255, 0.1)');
|
||||
$table->json('badges')->nullable();
|
||||
$table->string('min_deposit')->nullable();
|
||||
$table->string('max_bet')->nullable();
|
||||
$table->string('wagering')->nullable();
|
||||
$table->string('free_spins')->nullable();
|
||||
$table->string('button_link')->nullable();
|
||||
$table->json('key_features')->nullable();
|
||||
$table->boolean('is_sticky')->default(false);
|
||||
$table->boolean('is_no_deposit')->default(false);
|
||||
$table->integer('order')->default(0);
|
||||
$table->boolean('is_active')->default(true);
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('bonuses');
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user