2019-05-18 14:36:33 +03:00
|
|
|
import { PrimaryColumn, Entity, Index, JoinColumn, Column, ManyToOne } from 'typeorm';
|
2021-08-19 15:55:45 +03:00
|
|
|
import { User } from './user';
|
|
|
|
import { UserGroup } from './user-group';
|
|
|
|
import { id } from '../id';
|
2019-05-18 14:36:33 +03:00
|
|
|
|
|
|
|
@Entity()
|
2019-05-19 14:41:23 +03:00
|
|
|
@Index(['userId', 'userGroupId'], { unique: true })
|
2019-05-18 14:36:33 +03:00
|
|
|
export class UserGroupJoining {
|
|
|
|
@PrimaryColumn(id())
|
|
|
|
public id: string;
|
|
|
|
|
|
|
|
@Column('timestamp with time zone', {
|
2021-12-09 16:58:30 +02:00
|
|
|
comment: 'The created date of the UserGroupJoining.',
|
2019-05-18 14:36:33 +03:00
|
|
|
})
|
|
|
|
public createdAt: Date;
|
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column({
|
|
|
|
...id(),
|
2021-12-09 16:58:30 +02:00
|
|
|
comment: 'The user ID.',
|
2019-05-18 14:36:33 +03:00
|
|
|
})
|
|
|
|
public userId: User['id'];
|
|
|
|
|
|
|
|
@ManyToOne(type => User, {
|
2021-12-09 16:58:30 +02:00
|
|
|
onDelete: 'CASCADE',
|
2019-05-18 14:36:33 +03:00
|
|
|
})
|
|
|
|
@JoinColumn()
|
|
|
|
public user: User | null;
|
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column({
|
|
|
|
...id(),
|
2021-12-09 16:58:30 +02:00
|
|
|
comment: 'The group ID.',
|
2019-05-18 14:36:33 +03:00
|
|
|
})
|
|
|
|
public userGroupId: UserGroup['id'];
|
|
|
|
|
|
|
|
@ManyToOne(type => UserGroup, {
|
2021-12-09 16:58:30 +02:00
|
|
|
onDelete: 'CASCADE',
|
2019-05-18 14:36:33 +03:00
|
|
|
})
|
|
|
|
@JoinColumn()
|
|
|
|
public userGroup: UserGroup | null;
|
|
|
|
}
|