Sharkey/packages/backend/src/models/entities/PromoRead.ts

36 lines
725 B
TypeScript
Raw Normal View History

2020-02-18 01:41:32 +02:00
import { PrimaryColumn, Entity, Index, JoinColumn, Column, ManyToOne } from 'typeorm';
import { id } from '../id.js';
2022-09-17 21:27:08 +03:00
import { Note } from './Note.js';
import { User } from './User.js';
2020-02-18 01:41:32 +02:00
@Entity()
@Index(['userId', 'noteId'], { unique: true })
export class PromoRead {
@PrimaryColumn(id())
public id: string;
@Column('timestamp with time zone', {
2021-12-09 16:58:30 +02:00
comment: 'The created date of the PromoRead.',
2020-02-18 01:41:32 +02:00
})
public createdAt: Date;
@Index()
@Column(id())
public userId: User['id'];
@ManyToOne(type => User, {
2021-12-09 16:58:30 +02:00
onDelete: 'CASCADE',
2020-02-18 01:41:32 +02:00
})
@JoinColumn()
public user: User | null;
@Column(id())
public noteId: Note['id'];
@ManyToOne(type => Note, {
2021-12-09 16:58:30 +02:00
onDelete: 'CASCADE',
2020-02-18 01:41:32 +02:00
})
@JoinColumn()
public note: Note | null;
}