string('postcode', 7)->primary()->comment('Normalised: uppercase, no spaces'); $table->string('outcode', 4)->index(); $table->decimal('lat', 10, 7); $table->decimal('lng', 10, 7); }); } public function down(): void { Schema::dropIfExists('postcodes'); } };