id(); $table->string('town_pid', 15)->unique(); $table->string('town_name', 50); $table->unsignedTinyInteger('state'); $table->unsignedInteger('population')->nullable(); $table->unsignedTinyInteger('town_class')->nullable(); $table->timestamp('date_retired')->nullable(); $table->timestamps(); $table->index(['town_name', 'state']); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('towns'); } };