id(); $table->tinyInteger('sequence_number'); $table->string('name_it'); $table->string('name_en'); $table->text('description_it')->nullable(); $table->text('description_en')->nullable(); $table->float('latitude',8,6); $table->float('longitude',8,6); // pics defined in pivot table $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('placemarks'); } };