Commit 57d7731f authored by Alfonso Rafael Solis Rangel's avatar Alfonso Rafael Solis Rangel
Browse files

cambio de observaciones a observacion

parent fc302523
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@
    public function up(): void
    {
        Schema::table('contactos', function (Blueprint $table) {
            $table->text('observaciones')->nullable();
            $table->text('observacion')->nullable();
        });
    }

@@ -22,7 +22,7 @@ public function up(): void
    public function down(): void
    {
        Schema::table('contactos', function (Blueprint $table) {
            $table->dropColumn('observaciones');
            $table->dropColumn('observacion');
        });
    }
};