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()
{
$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');
}
}