summary refs log tree commit diff
path: root/src/util/entities/UserGroup.ts
blob: 709b9d0b715c0ae386adee52efe84ed86a7ad83c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import { Column, Entity, JoinColumn, ManyToOne, RelationId } from "typeorm";

import { BaseClass } from "./BaseClass";
import { Guild } from "./Guild";
import { User } from "./User";

@Entity("groups")
export class UserGroup extends BaseClass {
	@Column()
	color: number;

	@Column()
	hoist: boolean;
	
	@JoinColumn({ name: "controller", referencedColumnName: "id" })
	@ManyToOne(() => User)
	controller?: User;
	 
	@Column()
	mentionable_by?: string;

	@Column()
	name: string;

	@Column()
	rights: string;

	@Column({ nullable: true })
	icon: string;
	
	@Column({ nullable: true })
	parent?: string;
	
	@Column({ type: "simple-array", nullable: true})
	associciations: string[];

}