mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-18 15:00:00 +00:00
20 lines
338 B
TypeScript
20 lines
338 B
TypeScript
import { Entity, Column, PrimaryColumn } from "typeorm";
|
|
|
|
@Entity("vc_alerts")
|
|
export class VCAlert {
|
|
@Column()
|
|
@PrimaryColumn()
|
|
id: number;
|
|
|
|
@Column() guild_id: string;
|
|
|
|
@Column() requestor_id: string;
|
|
|
|
@Column() user_id: string;
|
|
|
|
@Column() channel_id: string;
|
|
|
|
@Column() expires_at: string;
|
|
|
|
@Column() body: string;
|
|
}
|