2023-07-27 07:31:52 +02:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2023-03-31 04:30:27 +02:00
|
|
|
import { PrimaryColumn, Entity, Index, JoinColumn, Column, ManyToOne } from 'typeorm';
|
|
|
|
import { id } from '../id.js';
|
2023-08-16 10:51:28 +02:00
|
|
|
import { MiUser } from './User.js';
|
|
|
|
import { MiChannel } from './Channel.js';
|
2023-03-31 04:30:27 +02:00
|
|
|
|
2023-08-16 10:51:28 +02:00
|
|
|
@Entity('channel_favorite')
|
2023-03-31 04:30:27 +02:00
|
|
|
@Index(['userId', 'channelId'], { unique: true })
|
2023-08-16 10:51:28 +02:00
|
|
|
export class MiChannelFavorite {
|
2023-03-31 04:30:27 +02:00
|
|
|
@PrimaryColumn(id())
|
|
|
|
public id: string;
|
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column('timestamp with time zone', {
|
|
|
|
comment: 'The created date of the ChannelFavorite.',
|
|
|
|
})
|
|
|
|
public createdAt: Date;
|
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column({
|
|
|
|
...id(),
|
|
|
|
})
|
2023-08-16 10:51:28 +02:00
|
|
|
public channelId: MiChannel['id'];
|
2023-03-31 04:30:27 +02:00
|
|
|
|
2023-08-16 10:51:28 +02:00
|
|
|
@ManyToOne(type => MiChannel, {
|
2023-03-31 04:30:27 +02:00
|
|
|
onDelete: 'CASCADE',
|
|
|
|
})
|
|
|
|
@JoinColumn()
|
2023-08-16 10:51:28 +02:00
|
|
|
public channel: MiChannel | null;
|
2023-03-31 04:30:27 +02:00
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column({
|
|
|
|
...id(),
|
|
|
|
})
|
2023-08-16 10:51:28 +02:00
|
|
|
public userId: MiUser['id'];
|
2023-03-31 04:30:27 +02:00
|
|
|
|
2023-08-16 10:51:28 +02:00
|
|
|
@ManyToOne(type => MiUser, {
|
2023-03-31 04:30:27 +02:00
|
|
|
onDelete: 'CASCADE',
|
|
|
|
})
|
|
|
|
@JoinColumn()
|
2023-08-16 10:51:28 +02:00
|
|
|
public user: MiUser | null;
|
2023-03-31 04:30:27 +02:00
|
|
|
}
|