id(); $table->string('name'); $table->string('razon'); $table->string('ubicacion')->nullable();; $table->string('nomenclatura')->nullable(); $table->string('latitud')->nullable(); $table->string('longitud')->nullable(); $table->bigInteger('telefono'); $table->boolean('status'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('plantels'); } };