Basic signup for events

This commit is contained in:
2026-03-21 21:02:15 +01:00
parent 23af267896
commit b8341890d3
74 changed files with 4046 additions and 947 deletions

View File

@@ -26,8 +26,10 @@ return new class extends Migration {
$table->string('tenant');
$table->string('type');
$table->string('name');
$table->string('description')->default('');
$table->float('amount',2);
$table->string('description')->nullable()->default('');
$table->float('amount_standard',2);
$table->float('amount_reduced',2)->nullable();
$table->float('amount_solidarity', 2)->nullable();
$table->timestamps();
$table->foreign('type')->references('slug')->on('participation_types')->restrictOnDelete()->cascadeOnUpdate();