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