Initial Laravel setup

This commit is contained in:
joeplikestocode
2026-02-17 23:30:56 +01:00
commit 09b2b988f7
88 changed files with 15450 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
<?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->integer('difficulty')->default(0);
$table->foreignId('image_id')->nullable()->constrained()->cascadeOnDelete();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('patches');
}
};