add comment field

This commit is contained in:
amazuecos
2024-10-21 17:05:50 +00:00
parent 73a60466d3
commit c6b1bd9292
5 changed files with 11 additions and 0 deletions

View File

@ -10,6 +10,7 @@ class TarifaEnvioEntity extends \CodeIgniter\Entity\Entity
"pais_id" => null,
"nombre" => null,
"code" => null,
"comment" => null,
"user_created_id" => 0,
"user_updated_id" => 0,
"is_deleted" => 0,
@ -19,6 +20,7 @@ class TarifaEnvioEntity extends \CodeIgniter\Entity\Entity
protected $casts = [
"pais_id" => "?int",
"code" => "string",
"comment" => "string",
"user_created_id" => "int",
"user_updated_id" => "int",
"is_deleted" => "int",