engine = 'InnoDB'; $table->increments('id'); $table->string('gender'); $table->string('firstname'); $table->string('lastname'); $table->date('birthday'); $table->string('email'); $table->string('group')->nullable(); $table->string('agegroup'); $table->string('agegroup_leader'); $table->boolean('vorteam'); $table->boolean('foto'); $table->string('emergency_phone'); $table->string('address'); $table->string('zip'); $table->string('location'); $table->string('phone'); $table->string('activity'); $table->json('food_preferences'); $table->string('further_food_preferences')->nullable(); $table->text('misc')->nullable(); $table->timestamps(); }); } public function down() { Schema::dropIfExists('zoomyboy_event_participants'); } }