mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-30 22:07:39 -07:00
40 lines
715 B
TypeScript
40 lines
715 B
TypeScript
import {
|
|
PrimaryColumn,
|
|
Entity,
|
|
Index,
|
|
JoinColumn,
|
|
Column,
|
|
ManyToOne,
|
|
} from "typeorm";
|
|
import { User } from "./user.js";
|
|
import { id } from "../id.js";
|
|
import { GalleryPost } from "./gallery-post.js";
|
|
|
|
@Entity()
|
|
@Index(['userId', 'postId'], { unique: true })
|
|
export class GalleryLike {
|
|
@PrimaryColumn(id())
|
|
public id: string;
|
|
|
|
@Column('timestamp with time zone')
|
|
public createdAt: Date;
|
|
|
|
@Index()
|
|
@Column(id())
|
|
public userId: User["id"];
|
|
|
|
@ManyToOne(type => User, {
|
|
onDelete: 'CASCADE',
|
|
})
|
|
@JoinColumn()
|
|
public user: User | null;
|
|
|
|
@Column(id())
|
|
public postId: GalleryPost["id"];
|
|
|
|
@ManyToOne(type => GalleryPost, {
|
|
onDelete: 'CASCADE',
|
|
})
|
|
@JoinColumn()
|
|
public post: GalleryPost | null;
|
|
}
|