67 lines
1.2 KiB
TypeScript
67 lines
1.2 KiB
TypeScript
|
import { Entity, Index, JoinColumn, Column, PrimaryColumn, ManyToOne } from 'typeorm';
|
||
|
import { id } from '../id.js';
|
||
|
|
||
|
@Entity()
|
||
|
export class Role {
|
||
|
@PrimaryColumn(id())
|
||
|
public id: string;
|
||
|
|
||
|
@Column('timestamp with time zone', {
|
||
|
comment: 'The created date of the Role.',
|
||
|
})
|
||
|
public createdAt: Date;
|
||
|
|
||
|
@Column('timestamp with time zone', {
|
||
|
comment: 'The updated date of the Role.',
|
||
|
})
|
||
|
public updatedAt: Date;
|
||
|
|
||
|
@Column('timestamp with time zone', {
|
||
|
comment: 'The last used date of the Role.',
|
||
|
})
|
||
|
public lastUsedAt: Date;
|
||
|
|
||
|
@Column('varchar', {
|
||
|
length: 256,
|
||
|
})
|
||
|
public name: string;
|
||
|
|
||
|
@Column('varchar', {
|
||
|
length: 1024,
|
||
|
})
|
||
|
public description: string;
|
||
|
|
||
|
@Column('varchar', {
|
||
|
length: 256, nullable: true,
|
||
|
})
|
||
|
public color: string | null;
|
||
|
|
||
|
@Column('boolean', {
|
||
|
default: false,
|
||
|
})
|
||
|
public isPublic: boolean;
|
||
|
|
||
|
@Column('boolean', {
|
||
|
default: false,
|
||
|
})
|
||
|
public isModerator: boolean;
|
||
|
|
||
|
@Column('boolean', {
|
||
|
default: false,
|
||
|
})
|
||
|
public isAdministrator: boolean;
|
||
|
|
||
|
@Column('boolean', {
|
||
|
default: false,
|
||
|
})
|
||
|
public canEditMembersByModerator: boolean;
|
||
|
|
||
|
@Column('jsonb', {
|
||
|
default: { },
|
||
|
})
|
||
|
public options: Record<string, {
|
||
|
useDefault: boolean;
|
||
|
value: any;
|
||
|
}>;
|
||
|
}
|