id(); $table->timestamps(); $table->string('country_name', 150); $table->integer('cq_zone'); $table->integer('itu_zone'); $table->string('continent', 2); $table->decimal('latitude', 10, 2); $table->decimal('longitude', 10, 2); $table->decimal('time_offset', 10, 2); $table->string('prefix', 25)->unique(); $table->boolean('precise')->default(false); $table->string('source', 25); $table->index('continent'); $table->index('cq_zone'); $table->index('itu_zone'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('cty'); } };