2023-07-27 08:31:52 +03:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2023-03-16 10:24:49 +02:00
|
|
|
import { PrimaryColumn, Entity, Index, JoinColumn, Column, ManyToOne } from 'typeorm';
|
|
|
|
import { id } from '../id.js';
|
2023-08-16 11:51:28 +03:00
|
|
|
import { MiUser } from './User.js';
|
|
|
|
import { MiClip } from './Clip.js';
|
2023-03-16 10:24:49 +02:00
|
|
|
|
2023-08-16 11:51:28 +03:00
|
|
|
@Entity('clip_favorite')
|
2023-03-16 10:24:49 +02:00
|
|
|
@Index(['userId', 'clipId'], { unique: true })
|
2023-08-16 11:51:28 +03:00
|
|
|
export class MiClipFavorite {
|
2023-03-16 10:24:49 +02:00
|
|
|
@PrimaryColumn(id())
|
|
|
|
public id: string;
|
|
|
|
|
|
|
|
@Column('timestamp with time zone')
|
|
|
|
public createdAt: Date;
|
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column(id())
|
2023-08-16 11:51:28 +03:00
|
|
|
public userId: MiUser['id'];
|
2023-03-16 10:24:49 +02:00
|
|
|
|
2023-08-16 11:51:28 +03:00
|
|
|
@ManyToOne(type => MiUser, {
|
2023-03-16 10:24:49 +02:00
|
|
|
onDelete: 'CASCADE',
|
|
|
|
})
|
|
|
|
@JoinColumn()
|
2023-08-16 11:51:28 +03:00
|
|
|
public user: MiUser | null;
|
2023-03-16 10:24:49 +02:00
|
|
|
|
|
|
|
@Column(id())
|
2023-08-16 11:51:28 +03:00
|
|
|
public clipId: MiClip['id'];
|
2023-03-16 10:24:49 +02:00
|
|
|
|
2023-08-16 11:51:28 +03:00
|
|
|
@ManyToOne(type => MiClip, {
|
2023-03-16 10:24:49 +02:00
|
|
|
onDelete: 'CASCADE',
|
|
|
|
})
|
|
|
|
@JoinColumn()
|
2023-08-16 11:51:28 +03:00
|
|
|
public clip: MiClip | null;
|
2023-03-16 10:24:49 +02:00
|
|
|
}
|