id(); $table->string('code', 10)->unique(); $table->string('iso3', 10)->nullable(); $table->string('name', 100); $table->string('hi', 150)->nullable(); $table->string('sw', 150)->nullable(); $table->string('tl', 150)->nullable(); $table->string('ta', 150)->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('nationalities'); } };