2023-07-27 05:31:52 +00:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2021-04-24 13:38:24 +00:00
|
|
|
import { PrimaryColumn, Entity, Index, JoinColumn, Column, ManyToOne } from 'typeorm';
|
2023-09-20 02:33:36 +00:00
|
|
|
import { id } from './util/id.js';
|
2023-08-16 08:51:28 +00:00
|
|
|
import { MiUser } from './User.js';
|
|
|
|
import { MiGalleryPost } from './GalleryPost.js';
|
2021-04-24 13:38:24 +00:00
|
|
|
|
2023-08-16 08:51:28 +00:00
|
|
|
@Entity('gallery_like')
|
2021-04-24 13:38:24 +00:00
|
|
|
@Index(['userId', 'postId'], { unique: true })
|
2023-08-16 08:51:28 +00:00
|
|
|
export class MiGalleryLike {
|
2021-04-24 13:38:24 +00:00
|
|
|
@PrimaryColumn(id())
|
|
|
|
public id: string;
|
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column(id())
|
2023-08-16 08:51:28 +00:00
|
|
|
public userId: MiUser['id'];
|
2021-04-24 13:38:24 +00:00
|
|
|
|
2023-08-16 08:51:28 +00:00
|
|
|
@ManyToOne(type => MiUser, {
|
2021-12-09 14:58:30 +00:00
|
|
|
onDelete: 'CASCADE',
|
2021-04-24 13:38:24 +00:00
|
|
|
})
|
|
|
|
@JoinColumn()
|
2023-08-16 08:51:28 +00:00
|
|
|
public user: MiUser | null;
|
2021-04-24 13:38:24 +00:00
|
|
|
|
|
|
|
@Column(id())
|
2023-08-16 08:51:28 +00:00
|
|
|
public postId: MiGalleryPost['id'];
|
2021-04-24 13:38:24 +00:00
|
|
|
|
2023-08-16 08:51:28 +00:00
|
|
|
@ManyToOne(type => MiGalleryPost, {
|
2021-12-09 14:58:30 +00:00
|
|
|
onDelete: 'CASCADE',
|
2021-04-24 13:38:24 +00:00
|
|
|
})
|
|
|
|
@JoinColumn()
|
2023-08-16 08:51:28 +00:00
|
|
|
public post: MiGalleryPost | null;
|
2021-04-24 13:38:24 +00:00
|
|
|
}
|