Loading database/migrations/2025_01_10_162200_update_ext_row_telefonos_table.php 0 → 100644 +28 −0 Original line number Diff line number Diff line <?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; return new class extends Migration { /** * Run the migrations. */ public function up(): void { Schema::table('telefonos', function (Blueprint $table) { $table->string('ext')->change(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('telefonos', function (Blueprint $table) { $table->integer('ext')->change(); }); } }; Loading
database/migrations/2025_01_10_162200_update_ext_row_telefonos_table.php 0 → 100644 +28 −0 Original line number Diff line number Diff line <?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; return new class extends Migration { /** * Run the migrations. */ public function up(): void { Schema::table('telefonos', function (Blueprint $table) { $table->string('ext')->change(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('telefonos', function (Blueprint $table) { $table->integer('ext')->change(); }); } };