diff options
Diffstat (limited to 'packages/backend/src/models/RoleAssignment.ts')
| -rw-r--r-- | packages/backend/src/models/RoleAssignment.ts | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/packages/backend/src/models/RoleAssignment.ts b/packages/backend/src/models/RoleAssignment.ts new file mode 100644 index 0000000000..4e5322c60b --- /dev/null +++ b/packages/backend/src/models/RoleAssignment.ts @@ -0,0 +1,53 @@ +/* + * SPDX-FileCopyrightText: syuilo and other misskey contributors + * SPDX-License-Identifier: AGPL-3.0-only + */ + +import { PrimaryColumn, Entity, Index, JoinColumn, Column, ManyToOne } from 'typeorm'; +import { id } from './util/id.js'; +import { MiRole } from './Role.js'; +import { MiUser } from './User.js'; + +@Entity('role_assignment') +@Index(['userId', 'roleId'], { unique: true }) +export class MiRoleAssignment { + @PrimaryColumn(id()) + public id: string; + + @Column('timestamp with time zone', { + comment: 'The created date of the RoleAssignment.', + }) + public createdAt: Date; + + @Index() + @Column({ + ...id(), + comment: 'The user ID.', + }) + public userId: MiUser['id']; + + @ManyToOne(type => MiUser, { + onDelete: 'CASCADE', + }) + @JoinColumn() + public user: MiUser | null; + + @Index() + @Column({ + ...id(), + comment: 'The role ID.', + }) + public roleId: MiRole['id']; + + @ManyToOne(type => MiRole, { + onDelete: 'CASCADE', + }) + @JoinColumn() + public role: MiRole | null; + + @Index() + @Column('timestamp with time zone', { + nullable: true, + }) + public expiresAt: Date | null; +} |