Chaos-Events und Voranmeldungen

This commit is contained in:
2026-03-28 02:16:58 +01:00
parent ba2dcb98e2
commit a99b8eb9c1
23 changed files with 485 additions and 33 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('chaos_events', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->string('shortname');
$table->date('from_date');
$table->date('to_date');
$table->boolean('active')->default(false);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('chaos_events');
}
};

View File

@@ -0,0 +1,35 @@
<?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('pre_applications', function (Blueprint $table) {
$table->id();
$table->string('reference_number')->unique();
$table->string('email')->unique();
$table->string('passport_type');
$table->bigInteger('event_id')->unsigned();
$table->foreign('event_id')->references('id')->on('chaos_events')->onDelete('cascade');
$table->string('first_name');
$table->string('last_name')->nullable();
$table->string('location')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('pre_applications');
}
};