se añade la opción de guardas al papel impresion

This commit is contained in:
2024-02-08 15:32:49 +01:00
parent 2bf9e271a7
commit aa851469af
7 changed files with 39 additions and 8 deletions

View File

@ -19,6 +19,7 @@ class PapelImpresion extends \CodeIgniter\Entity\Entity
"color" => true,
"cubierta" => false,
"sobrecubierta" => false,
"guardas" => false,
"inkjet" => false,
"rotativa" => false,
"is_deleted" => 0,
@ -36,6 +37,7 @@ class PapelImpresion extends \CodeIgniter\Entity\Entity
"color" => "boolean",
"cubierta" => "boolean",
"sobrecubierta" => "boolean",
"guardas" => "boolean",
"rotativa" => "boolean",
"is_deleted" => "int",
];