Files
sendit/database/migrations/2026_02_15_221505_create_patches_table.php
joeplikestocode cd8365e17b Initial commit
2026-02-15 23:43:47 +01:00

35 lines
926 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('patches', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->string('description');
$table->string('slug');
$table->int('difficulty')->default(0);
$table->foreignId('image_id')->nullable()->constrained()->cascadeOnDelete();
$table->foreignId('category_id')->nullable()->constrained()->cascadeOnDelete();
$table->string('icon')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('patches');
}
};