mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-18 23:09:59 +00:00
11 lines
197 B
TypeScript
11 lines
197 B
TypeScript
import { Column, Entity, PrimaryColumn } from "typeorm";
|
|
|
|
@Entity("antiraid_levels")
|
|
export class AntiraidLevel {
|
|
@Column()
|
|
@PrimaryColumn()
|
|
guild_id: string;
|
|
|
|
@Column()
|
|
level: string;
|
|
}
|