id(); $table->string('name'); $table->string('description'); $table->string('event_photo_path', 2048)->nullable(); $table->dateTime('start')->nullable(); $table->dateTime('end')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('events'); } };