2019-07-13 21:18:45 +03:00
|
|
|
import { PrimaryColumn, Entity, Index, JoinColumn, Column, ManyToOne } from 'typeorm';
|
2021-08-19 15:55:45 +03:00
|
|
|
import { User } from './user';
|
|
|
|
import { id } from '../id';
|
2019-07-13 21:18:45 +03:00
|
|
|
|
|
|
|
@Entity()
|
|
|
|
export class ModerationLog {
|
|
|
|
@PrimaryColumn(id())
|
|
|
|
public id: string;
|
|
|
|
|
|
|
|
@Column('timestamp with time zone', {
|
2021-12-09 16:58:30 +02:00
|
|
|
comment: 'The created date of the ModerationLog.',
|
2019-07-13 21:18:45 +03:00
|
|
|
})
|
|
|
|
public createdAt: Date;
|
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column(id())
|
|
|
|
public userId: User['id'];
|
|
|
|
|
|
|
|
@ManyToOne(type => User, {
|
2021-12-09 16:58:30 +02:00
|
|
|
onDelete: 'CASCADE',
|
2019-07-13 21:18:45 +03:00
|
|
|
})
|
|
|
|
@JoinColumn()
|
|
|
|
public user: User | null;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
length: 128,
|
|
|
|
})
|
|
|
|
public type: string;
|
|
|
|
|
|
|
|
@Column('jsonb')
|
|
|
|
public info: Record<string, any>;
|
|
|
|
}
|