egirlskey/packages/backend/src/models/entities/PromoNote.ts

29 lines
577 B
TypeScript
Raw Normal View History

2020-02-17 23:41:32 +00:00
import { PrimaryColumn, Entity, Index, JoinColumn, Column, OneToOne } from 'typeorm';
import { id } from '../id.js';
2022-09-17 18:27:08 +00:00
import { Note } from './Note.js';
import type { User } from './User.js';
2020-02-17 23:41:32 +00:00
@Entity()
export class PromoNote {
@PrimaryColumn(id())
public noteId: Note['id'];
@OneToOne(type => Note, {
2021-12-09 14:58:30 +00:00
onDelete: 'CASCADE',
2020-02-17 23:41:32 +00:00
})
@JoinColumn()
public note: Note | null;
@Column('timestamp with time zone')
public expiresAt: Date;
//#region Denormalized fields
@Index()
@Column({
...id(),
2021-12-09 14:58:30 +00:00
comment: '[Denormalized]',
2020-02-17 23:41:32 +00:00
})
public userId: User['id'];
//#endregion
}