id(); $table->string('nombre'); $table->string('ip_address')->unique(); $table->string('ubicacion')->nullable(); $table->boolean('activo'); $table->timestamps(); $table->index('ip_address'); $table->index('activo'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('arcos'); } };