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