mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-14 20:13:08 +02:00
b9cb6d1c10
将来ESMに移行しやすいように Related: #7658 なんかmochaが起動しなくなってるけど理由不明 すぐ直したい
42 lines
862 B
TypeScript
42 lines
862 B
TypeScript
import { PrimaryColumn, Entity, Index, JoinColumn, Column, ManyToOne } from 'typeorm';
|
|
import { User } from './user.js';
|
|
import { UserGroup } from './user-group.js';
|
|
import { id } from '../id.js';
|
|
|
|
@Entity()
|
|
@Index(['userId', 'userGroupId'], { unique: true })
|
|
export class UserGroupJoining {
|
|
@PrimaryColumn(id())
|
|
public id: string;
|
|
|
|
@Column('timestamp with time zone', {
|
|
comment: 'The created date of the UserGroupJoining.'
|
|
})
|
|
public createdAt: Date;
|
|
|
|
@Index()
|
|
@Column({
|
|
...id(),
|
|
comment: 'The user ID.'
|
|
})
|
|
public userId: User['id'];
|
|
|
|
@ManyToOne(type => User, {
|
|
onDelete: 'CASCADE'
|
|
})
|
|
@JoinColumn()
|
|
public user: User | null;
|
|
|
|
@Index()
|
|
@Column({
|
|
...id(),
|
|
comment: 'The group ID.'
|
|
})
|
|
public userGroupId: UserGroup['id'];
|
|
|
|
@ManyToOne(type => UserGroup, {
|
|
onDelete: 'CASCADE'
|
|
})
|
|
@JoinColumn()
|
|
public userGroup: UserGroup | null;
|
|
}
|