diff options
author | Samuel <34555296+Flam3rboy@users.noreply.github.com> | 2023-03-18 04:11:48 +0100 |
---|---|---|
committer | Samuel <34555296+Flam3rboy@users.noreply.github.com> | 2023-03-18 04:11:48 +0100 |
commit | 366c4935a42d5056c51cdbd7c82c2674f1b8b128 (patch) | |
tree | 7c3cdc444536d8b1065c9f98d96355d0f5276704 /src/util/entities/Role.ts | |
parent | fix: package-lock.json (diff) | |
download | server-366c4935a42d5056c51cdbd7c82c2674f1b8b128.tar.xz |
feat: Database Query Cache
Diffstat (limited to 'src/util/entities/Role.ts')
-rw-r--r-- | src/util/entities/Role.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/entities/Role.ts b/src/util/entities/Role.ts index d3275ede..c44fa2b1 100644 --- a/src/util/entities/Role.ts +++ b/src/util/entities/Role.ts @@ -18,11 +18,11 @@ import { Column, Entity, JoinColumn, ManyToOne, RelationId } from "typeorm"; -import { BaseClass } from "./BaseClass"; +import { EntityCache } from "../cache"; import { Guild } from "./Guild"; @Entity("roles") -export class Role extends BaseClass { +export class Role extends EntityCache { @Column({ nullable: true }) @RelationId((role: Role) => role.guild) guild_id: string; |