First Aid list, amount list and kitchen list PDF download implemented
This commit is contained in:
@@ -27,6 +27,7 @@ return new class extends Migration
|
||||
Schema::create('swimming_permissions', function (Blueprint $table) {
|
||||
$table->string('slug')->unique()->primary();
|
||||
$table->string('name');
|
||||
$table->string('short');
|
||||
$table->timestamps();
|
||||
});
|
||||
|
||||
|
||||
@@ -46,10 +46,10 @@ return new class extends Migration {
|
||||
$table->string('location');
|
||||
$table->string('postal_code');
|
||||
$table->string('email');
|
||||
$table->dateTime('start_date');
|
||||
$table->dateTime('end_date');
|
||||
$table->dateTime('early_bird_end');
|
||||
$table->dateTime('registration_final_end');
|
||||
$table->date('start_date');
|
||||
$table->date('end_date');
|
||||
$table->date('early_bird_end');
|
||||
$table->date('registration_final_end');
|
||||
$table->integer('early_bird_end_amount_increase');
|
||||
$table->string('account_owner');
|
||||
$table->string('account_iban');
|
||||
|
||||
@@ -50,8 +50,8 @@ return new class extends Migration {
|
||||
$table->boolean('foto_webseite')->default(false);
|
||||
$table->boolean('foto_partner')->default(false);
|
||||
$table->boolean('foto_intern')->default(false);
|
||||
$table->dateTime('arrival_date');
|
||||
$table->dateTime('departure_date');
|
||||
$table->date('arrival_date');
|
||||
$table->date('departure_date');
|
||||
$table->integer('arrival_eating');
|
||||
$table->integer('departure_eating');
|
||||
$table->longText('notes')->nullable();
|
||||
|
||||
Reference in New Issue
Block a user