summary refs log tree commit diff
path: root/util/src/entities/Role.ts
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-08-30 12:15:06 +0200
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-08-30 12:15:06 +0200
commit4abc758991d3f92a6404f269770fb92f5375d1e4 (patch)
tree925932613c1632e82d74202ef32277ae3e8e94c5 /util/src/entities/Role.ts
parent:zap: only local rate limit to prevent to much pressure on the database (diff)
downloadserver-4abc758991d3f92a6404f269770fb92f5375d1e4.tar.xz
:construction: typeorm
Diffstat (limited to '')
-rw-r--r--util/src/entities/Role.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/src/entities/Role.ts b/util/src/entities/Role.ts

index ddae7e40..be8c731d 100644 --- a/util/src/entities/Role.ts +++ b/util/src/entities/Role.ts
@@ -27,8 +27,8 @@ export class Role extends BaseClass { @Column() name: string; - @Column({ type: "bigint" }) - permissions: bigint; + @Column() + permissions: string; @Column() position: number;