mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-18 23:09:59 +00:00
19 lines
300 B
TypeScript
19 lines
300 B
TypeScript
![]() |
import { Column, Entity, PrimaryColumn } from "typeorm";
|
||
|
|
||
|
@Entity("tempbans")
|
||
|
export class Tempban {
|
||
|
@Column()
|
||
|
@PrimaryColumn()
|
||
|
guild_id: string;
|
||
|
|
||
|
@Column()
|
||
|
@PrimaryColumn()
|
||
|
user_id: string;
|
||
|
|
||
|
@Column() mod_id: string;
|
||
|
|
||
|
@Column() created_at: string;
|
||
|
|
||
|
@Column() expires_at: string;
|
||
|
}
|