mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-18 23:09:59 +00:00
21 lines
338 B
TypeScript
21 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;
|
||
|
}
|