2020-01-29 21:37:25 +02:00
|
|
|
import { Entity, Index, JoinColumn, Column, ManyToOne, PrimaryColumn } from 'typeorm';
|
2022-02-27 04:07:39 +02:00
|
|
|
import { id } from '../id.js';
|
2022-09-17 21:27:08 +03:00
|
|
|
import { Note } from './Note.js';
|
|
|
|
import { Clip } from './Clip.js';
|
2020-01-29 21:37:25 +02:00
|
|
|
|
|
|
|
@Entity()
|
|
|
|
@Index(['noteId', 'clipId'], { unique: true })
|
|
|
|
export class ClipNote {
|
|
|
|
@PrimaryColumn(id())
|
|
|
|
public id: string;
|
2020-03-04 04:45:33 +02:00
|
|
|
|
2020-01-29 21:37:25 +02:00
|
|
|
@Index()
|
|
|
|
@Column({
|
|
|
|
...id(),
|
2021-12-09 16:58:30 +02:00
|
|
|
comment: 'The note ID.',
|
2020-01-29 21:37:25 +02:00
|
|
|
})
|
|
|
|
public noteId: Note['id'];
|
|
|
|
|
|
|
|
@ManyToOne(type => Note, {
|
2021-12-09 16:58:30 +02:00
|
|
|
onDelete: 'CASCADE',
|
2020-01-29 21:37:25 +02:00
|
|
|
})
|
|
|
|
@JoinColumn()
|
|
|
|
public note: Note | null;
|
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column({
|
|
|
|
...id(),
|
2021-12-09 16:58:30 +02:00
|
|
|
comment: 'The clip ID.',
|
2020-01-29 21:37:25 +02:00
|
|
|
})
|
|
|
|
public clipId: Clip['id'];
|
|
|
|
|
|
|
|
@ManyToOne(type => Clip, {
|
2021-12-09 16:58:30 +02:00
|
|
|
onDelete: 'CASCADE',
|
2020-01-29 21:37:25 +02:00
|
|
|
})
|
|
|
|
@JoinColumn()
|
|
|
|
public clip: Clip | null;
|
|
|
|
}
|