id()->primary(); $table->date('date'); $table->string('family'); $table->string('genus'); $table->string('specific_epithet'); $table->string('collector'); $table->string('collection_number'); $table->text('associate_collectors')->nullable(); $table->string('plant_habit'); $table->text('population_size'); $table->text('substrate'); $table->string('phenology_flowering'); $table->string('phenology_fruiting'); $table->string('phenology_fruiting_flowering'); $table->string('phenology_vegetative'); $table->text('phenology_notes')->nullable(); $table->text('vegetation_community'); $table->text('plant_associates')->nullable(); $table->string('aspect'); $table->string('exposure'); $table->string('elevation'); $table->text('location'); $table->string('latitude')->nullable(); $table->string('longitude')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('specimen'); } };