mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-07-11 21:17:19 +00:00
16 lines
316 B
TypeScript
16 lines
316 B
TypeScript
import { Column, Entity, PrimaryGeneratedColumn } from "typeorm";
|
|
|
|
@Entity("role_queue")
|
|
export class RoleQueueItem {
|
|
@PrimaryGeneratedColumn() id: number;
|
|
|
|
@Column() guild_id: string;
|
|
|
|
@Column() user_id: string;
|
|
|
|
@Column() role_id: string;
|
|
|
|
@Column() should_add: boolean;
|
|
|
|
@Column() priority: number;
|
|
}
|