Loading database/migrations/2025_01_08_193954_add_observaciones_to_contactos_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('contactos', function (Blueprint $table) { $table->text('observaciones')->nullable(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('contactos', function (Blueprint $table) { $table->dropColumn('observaciones'); }); } }; Loading
database/migrations/2025_01_08_193954_add_observaciones_to_contactos_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('contactos', function (Blueprint $table) { $table->text('observaciones')->nullable(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('contactos', function (Blueprint $table) { $table->dropColumn('observaciones'); }); } };