rudeshark.net/packages/backend/src/models/entities/promo-read.ts

43 lines
732 B
TypeScript
Raw Normal View History

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