add field activo in papel_generico

This commit is contained in:
amazuecos
2025-02-16 23:04:15 +00:00
parent ea8765e708
commit 61fdceb8e1
8 changed files with 65 additions and 16 deletions

View File

@ -13,11 +13,13 @@ class PapelGenerico extends \CodeIgniter\Entity\Entity
"show_in_client" => false,
"show_in_client_special" => false,
"is_deleted" => 0,
"activo" => false,
"created_at" => null,
"updated_at" => null,
];
protected $casts = [
"show_in_client" => "boolean",
"activo" => "boolean",
"show_in_client_special" => "boolean",
"is_deleted" => "int",
];