diff options
author | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-08-22 22:12:00 +1000 |
---|---|---|
committer | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-08-22 22:12:00 +1000 |
commit | afefa5d64bd6cde7d6efa3a9a5a3ec67a6ca29a8 (patch) | |
tree | 07779150eba77c27bf75bc0c7890f4a3f976716e /src/util/entities/RateLimit.ts | |
parent | removed char joiners as they are actually useful, added page break (diff) | |
parent | Merge remote-tracking branch 'Puyodead1/patch/prettier-config' into staging (diff) | |
download | server-afefa5d64bd6cde7d6efa3a9a5a3ec67a6ca29a8.tar.xz |
Merge remote-tracking branch 'upstream/staging' into fix/categoryNames
Diffstat (limited to 'src/util/entities/RateLimit.ts')
-rw-r--r-- | src/util/entities/RateLimit.ts | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/util/entities/RateLimit.ts b/src/util/entities/RateLimit.ts new file mode 100644 index 00000000..f5916f6b --- /dev/null +++ b/src/util/entities/RateLimit.ts @@ -0,0 +1,17 @@ +import { Column, Entity } from "typeorm"; +import { BaseClass } from "./BaseClass"; + +@Entity("rate_limits") +export class RateLimit extends BaseClass { + @Column() // no relation as it also + executor_id: string; + + @Column() + hits: number; + + @Column() + blocked: boolean; + + @Column() + expires_at: Date; +} |