add event_photo_path attribut to create_events_table migration

This commit is contained in:
2026-04-01 20:15:06 +02:00
parent 0c0af0fd00
commit afbffe99a8
@@ -15,6 +15,7 @@ return new class extends Migration
$table->id();
$table->string('name');
$table->string('description');
$table->string('event_photo_path', 2048)->nullable();
$table->dateTime('start')->nullable();
$table->dateTime('end')->nullable();
$table->timestamps();