diff options
author | Erkin Alp Güney <erkinalp9035@gmail.com> | 2022-04-21 18:51:40 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-21 18:51:40 +0300 |
commit | ed69bbbe473b110c7653adbf0793454c39de4041 (patch) | |
tree | f528cef0f652b561ac9aa12ba401e36c2134a94e | |
parent | user groups - first steps (diff) | |
download | server-ed69bbbe473b110c7653adbf0793454c39de4041.tar.xz |
Update UserGroup.ts
-rw-r--r-- | util/src/entities/UserGroup.ts | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/util/src/entities/UserGroup.ts b/util/src/entities/UserGroup.ts index b32c2d6d..709b9d0b 100644 --- a/util/src/entities/UserGroup.ts +++ b/util/src/entities/UserGroup.ts @@ -27,13 +27,6 @@ export class UserGroup extends BaseClass { @Column({ nullable: true }) icon: string; - - @Column({ type: "simple-json", nullable: true }) - tags?: { - bot_id?: string; - integration_id?: string; - premium_subscriber?: boolean; - }; @Column({ nullable: true }) parent?: string; |