modificado formulario cliente. Añadida migracion para la bbdd

This commit is contained in:
2024-11-17 20:54:11 +01:00
parent 64efc15b3f
commit 2a73d29546
11 changed files with 100 additions and 281 deletions

View File

@ -66,7 +66,7 @@ class UserModel extends ShieldUserModel
$builder = $this->db
->table("users" . " t1")
->select(
"t1.id AS id, CONCAT(t1.first_name, ' ', t1.last_name) AS text"
"t1.id AS id, CONCAT(t1.first_name, ' ', t1.last_name) AS name"
);
$builder->where('t1.deleted_at', null);