mizzkey/packages/backend/src/models/entities/ModerationLog.ts

38 lines
769 B
TypeScript
Raw Normal View History

/*
* SPDX-FileCopyrightText: syuilo and other misskey contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
2019-07-14 03:18:45 +09:00
import { PrimaryColumn, Entity, Index, JoinColumn, Column, ManyToOne } from 'typeorm';
import { id } from '../id.js';
2023-08-14 18:24:45 +09:00
import { MiUser } from './User.js';
2019-07-14 03:18:45 +09:00
2023-08-15 17:38:39 +09:00
@Entity('moderation_log')
2023-08-14 18:24:45 +09:00
export class MiModerationLog {
2019-07-14 03:18:45 +09:00
@PrimaryColumn(id())
public id: string;
@Column('timestamp with time zone', {
2021-12-09 23:58:30 +09:00
comment: 'The created date of the ModerationLog.',
2019-07-14 03:18:45 +09:00
})
public createdAt: Date;
@Index()
@Column(id())
2023-08-14 18:24:45 +09:00
public userId: MiUser['id'];
2019-07-14 03:18:45 +09:00
2023-08-14 18:24:45 +09:00
@ManyToOne(type => MiUser, {
2021-12-09 23:58:30 +09:00
onDelete: 'CASCADE',
2019-07-14 03:18:45 +09:00
})
@JoinColumn()
2023-08-14 18:24:45 +09:00
public user: MiUser | null;
2019-07-14 03:18:45 +09:00
@Column('varchar', {
length: 128,
})
public type: string;
@Column('jsonb')
public info: Record<string, any>;
}