add folder operation and use createQueryRunner

This commit is contained in:
IO420
2025-09-16 22:37:25 -06:00
parent 7024bfdeac
commit 3e4b3b1b18
15 changed files with 150 additions and 76 deletions
-1
View File
@@ -49,7 +49,6 @@ export class Perfil {
@Column({ name: 'perfil', type: 'varchar', length: 45, nullable: false })
perfil: string;
// Relación uno a muchos con usuario
@OneToMany(() => User, (user) => user.perfil)
usuarios: User[];
}