change table name to mostrar_en_presupuesto_cliente

This commit is contained in:
amazuecos
2025-02-16 19:54:21 +00:00
parent b6b8df0061
commit 8b03dc6de6

View File

@ -9,7 +9,7 @@ class AlterTableTarifasCheckPresupuestoClienteMigration extends Migration
public function up() public function up()
{ {
$field = [ $field = [
'check_presupuesto_cliente' => [ 'mostrar_en_presupuesto_cliente' => [
'type' => 'BOOLEAN', 'type' => 'BOOLEAN',
'default' => false, 'default' => false,
] ]
@ -22,8 +22,8 @@ class AlterTableTarifasCheckPresupuestoClienteMigration extends Migration
public function down() public function down()
{ {
$this->forge->dropColumn('lg_tarifa_acabado','check_presupuesto_cliente'); $this->forge->dropColumn('lg_tarifa_acabado','mostrar_en_presupuesto_cliente');
$this->forge->dropColumn('lg_tarifa_manipulado','check_presupuesto_cliente'); $this->forge->dropColumn('lg_tarifa_manipulado','mostrar_en_presupuesto_cliente');
$this->forge->dropColumn('tarifa_encuadernacion','check_presupuesto_cliente'); $this->forge->dropColumn('tarifa_encuadernacion','mostrar_en_presupuesto_cliente');
} }
} }