iceshrimp-legacy/packages/backend/src/models/entities/user-group-joining.ts

50 lines
874 B
TypeScript
Raw Normal View History

2023-01-13 05:40:33 +01:00
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";
2019-05-18 13:36:33 +02:00
@Entity()
2019-05-19 13:41:23 +02:00
@Index(['userId', 'userGroupId'], { unique: true })
2019-05-18 13:36:33 +02:00
export class UserGroupJoining {
@PrimaryColumn(id())
public id: string;
@Column('timestamp with time zone', {
2021-12-09 15:58:30 +01:00
comment: 'The created date of the UserGroupJoining.',
2019-05-18 13:36:33 +02:00
})
public createdAt: Date;
@Index()
@Column({
...id(),
2021-12-09 15:58:30 +01:00
comment: 'The user ID.',
2019-05-18 13:36:33 +02:00
})
2023-01-13 05:40:33 +01:00
public userId: User["id"];
2019-05-18 13:36:33 +02:00
@ManyToOne(type => User, {
2021-12-09 15:58:30 +01:00
onDelete: 'CASCADE',
2019-05-18 13:36:33 +02:00
})
@JoinColumn()
public user: User | null;
@Index()
@Column({
...id(),
2021-12-09 15:58:30 +01:00
comment: 'The group ID.',
2019-05-18 13:36:33 +02:00
})
2023-01-13 05:40:33 +01:00
public userGroupId: UserGroup["id"];
2019-05-18 13:36:33 +02:00
@ManyToOne(type => UserGroup, {
2021-12-09 15:58:30 +01:00
onDelete: 'CASCADE',
2019-05-18 13:36:33 +02:00
})
@JoinColumn()
public userGroup: UserGroup | null;
}