2020-02-17 23:41:32 +00:00
|
|
|
import { PrimaryColumn, Entity, Index, JoinColumn, Column, OneToOne } from 'typeorm';
|
2022-02-27 02:07:39 +00:00
|
|
|
import { Note } from './note.js';
|
|
|
|
import { User } from './user.js';
|
|
|
|
import { id } from '../id.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
|
|
|
|
}
|