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

39 lines
822 B
TypeScript
Raw Normal View History

/*
* SPDX-FileCopyrightText: syuilo and other misskey contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
import { PrimaryColumn, Entity, Index, JoinColumn, Column, ManyToOne } from 'typeorm';
import { id } from '../id.js';
2022-09-17 18:27:08 +00:00
import { User } from './User.js';
import { GalleryPost } from './GalleryPost.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, {
2021-12-09 14:58:30 +00:00
onDelete: 'CASCADE',
})
@JoinColumn()
public user: User | null;
@Column(id())
public postId: GalleryPost['id'];
@ManyToOne(type => GalleryPost, {
2021-12-09 14:58:30 +00:00
onDelete: 'CASCADE',
})
@JoinColumn()
public post: GalleryPost | null;
}