mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-13 11:33:09 +02:00
33 lines
620 B
TypeScript
33 lines
620 B
TypeScript
|
import { PrimaryColumn, Entity, Index, JoinColumn, Column, ManyToOne } from 'typeorm';
|
||
|
import { User } from './user';
|
||
|
import { id } from '../id';
|
||
|
|
||
|
@Entity()
|
||
|
export class ModerationLog {
|
||
|
@PrimaryColumn(id())
|
||
|
public id: string;
|
||
|
|
||
|
@Column('timestamp with time zone', {
|
||
|
comment: 'The created date of the ModerationLog.'
|
||
|
})
|
||
|
public createdAt: Date;
|
||
|
|
||
|
@Index()
|
||
|
@Column(id())
|
||
|
public userId: User['id'];
|
||
|
|
||
|
@ManyToOne(type => User, {
|
||
|
onDelete: 'CASCADE'
|
||
|
})
|
||
|
@JoinColumn()
|
||
|
public user: User | null;
|
||
|
|
||
|
@Column('varchar', {
|
||
|
length: 128,
|
||
|
})
|
||
|
public type: string;
|
||
|
|
||
|
@Column('jsonb')
|
||
|
public info: Record<string, any>;
|
||
|
}
|