import { PrimaryColumn, Entity, Index, JoinColumn, Column, ManyToOne } from 'typeorm';
import { User } from './user';
import { DriveFile } from './drive-file';
import { id } from '../id';
import { UserGroup } from './user-group';
@Entity()
export class MessagingMessage {
@PrimaryColumn(id())
public id: string;
@Index()
@Column('timestamp with time zone', {
comment: 'The created date of the MessagingMessage.',
})
public createdAt: Date;
@Column({
...id(),
comment: 'The sender user ID.',
public userId: User['id'];
@ManyToOne(type => User, {
onDelete: 'CASCADE',
@JoinColumn()
public user: User | null;
...id(), nullable: true,
comment: 'The recipient user ID.',
public recipientId: User['id'] | null;
public recipient: User | null;
comment: 'The recipient group ID.',
public groupId: UserGroup['id'] | null;
@ManyToOne(type => UserGroup, {
public group: UserGroup | null;
@Column('varchar', {
length: 4096, nullable: true,
public text: string | null;
@Column('boolean', {
default: false,
public isRead: boolean;
length: 512, nullable: true,
public uri: string | null;
array: true, default: '{}',
public reads: User['id'][];
nullable: true,
public fileId: DriveFile['id'] | null;
@ManyToOne(type => DriveFile, {
public file: DriveFile | null;
}