2023-07-27 05:31:52 +00:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
import { Entity, Index, JoinColumn, Column, ManyToOne, PrimaryColumn } from 'typeorm';
|
2022-02-27 02:07:39 +00:00
|
|
|
import { id } from '../id.js';
|
2023-08-16 08:51:28 +00:00
|
|
|
import { MiNote } from './Note.js';
|
|
|
|
import { MiClip } from './Clip.js';
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-08-16 08:51:28 +00:00
|
|
|
@Entity('clip_note')
|
2020-01-29 19:37:25 +00:00
|
|
|
@Index(['noteId', 'clipId'], { unique: true })
|
2023-08-16 08:51:28 +00:00
|
|
|
export class MiClipNote {
|
2020-01-29 19:37:25 +00:00
|
|
|
@PrimaryColumn(id())
|
|
|
|
public id: string;
|
2020-03-04 02:45:33 +00:00
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
@Index()
|
|
|
|
@Column({
|
|
|
|
...id(),
|
2021-12-09 14:58:30 +00:00
|
|
|
comment: 'The note ID.',
|
2020-01-29 19:37:25 +00:00
|
|
|
})
|
2023-08-16 08:51:28 +00:00
|
|
|
public noteId: MiNote['id'];
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-08-16 08:51:28 +00:00
|
|
|
@ManyToOne(type => MiNote, {
|
2021-12-09 14:58:30 +00:00
|
|
|
onDelete: 'CASCADE',
|
2020-01-29 19:37:25 +00:00
|
|
|
})
|
|
|
|
@JoinColumn()
|
2023-08-16 08:51:28 +00:00
|
|
|
public note: MiNote | null;
|
2020-01-29 19:37:25 +00:00
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column({
|
|
|
|
...id(),
|
2021-12-09 14:58:30 +00:00
|
|
|
comment: 'The clip ID.',
|
2020-01-29 19:37:25 +00:00
|
|
|
})
|
2023-08-16 08:51:28 +00:00
|
|
|
public clipId: MiClip['id'];
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-08-16 08:51:28 +00:00
|
|
|
@ManyToOne(type => MiClip, {
|
2021-12-09 14:58:30 +00:00
|
|
|
onDelete: 'CASCADE',
|
2020-01-29 19:37:25 +00:00
|
|
|
})
|
|
|
|
@JoinColumn()
|
2023-08-16 08:51:28 +00:00
|
|
|
public clip: MiClip | null;
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|