Hintergrundverwaltung und leere Hüllen; neuaufsetzen submodule

This commit is contained in:
2026-03-23 23:40:20 +01:00
parent a2751d4776
commit 122af4aa54
32 changed files with 32012 additions and 45 deletions

View File

@@ -0,0 +1,26 @@
<?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('register_tokens', function (Blueprint $table) {
$table->string('token')->primary();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('register_tokens');
}
};