Initial commit

This commit is contained in:
joeplikestocode
2026-02-15 23:43:47 +01:00
commit cd8365e17b
85 changed files with 14611 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
<?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');
}
};