From 8b03dc6de67842da83583693726fcd4607068098 Mon Sep 17 00:00:00 2001 From: amazuecos Date: Sun, 16 Feb 2025 19:54:21 +0000 Subject: [PATCH] change table name to mostrar_en_presupuesto_cliente --- ..._AlterTableTarifasCheckPresupuestoClienteMigration.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ci4/app/Database/Migrations/2025-02-16-194726_AlterTableTarifasCheckPresupuestoClienteMigration.php b/ci4/app/Database/Migrations/2025-02-16-194726_AlterTableTarifasCheckPresupuestoClienteMigration.php index c02e27e2..1d4f8510 100644 --- a/ci4/app/Database/Migrations/2025-02-16-194726_AlterTableTarifasCheckPresupuestoClienteMigration.php +++ b/ci4/app/Database/Migrations/2025-02-16-194726_AlterTableTarifasCheckPresupuestoClienteMigration.php @@ -9,7 +9,7 @@ class AlterTableTarifasCheckPresupuestoClienteMigration extends Migration public function up() { $field = [ - 'check_presupuesto_cliente' => [ + 'mostrar_en_presupuesto_cliente' => [ 'type' => 'BOOLEAN', 'default' => false, ] @@ -22,8 +22,8 @@ class AlterTableTarifasCheckPresupuestoClienteMigration extends Migration public function down() { - $this->forge->dropColumn('lg_tarifa_acabado','check_presupuesto_cliente'); - $this->forge->dropColumn('lg_tarifa_manipulado','check_presupuesto_cliente'); - $this->forge->dropColumn('tarifa_encuadernacion','check_presupuesto_cliente'); + $this->forge->dropColumn('lg_tarifa_acabado','mostrar_en_presupuesto_cliente'); + $this->forge->dropColumn('lg_tarifa_manipulado','mostrar_en_presupuesto_cliente'); + $this->forge->dropColumn('tarifa_encuadernacion','mostrar_en_presupuesto_cliente'); } }