|
@@ -34,6 +34,7 @@ class Estado extends ModeloBase {
|
|
|
/* [['clave'], 'integer'], */
|
|
|
[['creado', 'modificado', 'eliminado'], 'safe'],
|
|
|
[['id', 'pais'], 'string', 'max' => 36],
|
|
|
+ [['idSagarhpa'], 'integer'],
|
|
|
[['nombre'], 'string', 'max' => 100],
|
|
|
[['abreviacion'], 'string', 'max' => 16],
|
|
|
[['id'], 'unique'],
|
|
@@ -46,6 +47,7 @@ class Estado extends ModeloBase {
|
|
|
public function attributeLabels() {
|
|
|
return [
|
|
|
'id' => 'ID',
|
|
|
+ 'idSagarhpa' => 'ID Sagarhpa',
|
|
|
'nombre' => 'Nombre',
|
|
|
'abreviacion' => 'Abreviacion',
|
|
|
'creado' => 'Creado',
|