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

43 lines
736 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()
2023-05-29 18:31:02 +02:00
@Index(["userId", "noteId"], { unique: true })
2020-02-18 00:41:32 +01:00
export class PromoRead {
@PrimaryColumn(id())
public id: string;
2023-05-29 18:31:02 +02:00
@Column("timestamp with time zone", {
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
2023-05-29 18:31:02 +02:00
@ManyToOne((type) => User, {
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
2023-05-29 18:31:02 +02:00
@ManyToOne((type) => Note, {
onDelete: "CASCADE",
2020-02-18 00:41:32 +01:00
})
@JoinColumn()
public note: Note | null;
}