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 { Note } from './note.js';
|
|
|
|
import { Antenna } from './antenna.js';
|
|
|
|
import { id } from '../id.js';
|
2020-01-29 19:37:25 +00:00
|
|
|
|
|
|
|
@Entity()
|
|
|
|
@Index(['noteId', 'antennaId'], { unique: true })
|
|
|
|
export class AntennaNote {
|
|
|
|
@PrimaryColumn(id())
|
|
|
|
public id: string;
|
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column({
|
|
|
|
...id(),
|
2021-12-09 14:58:30 +00:00
|
|
|
comment: 'The note ID.',
|
2020-01-29 19:37:25 +00:00
|
|
|
})
|
|
|
|
public noteId: Note['id'];
|
|
|
|
|
|
|
|
@ManyToOne(type => Note, {
|
2021-12-09 14:58:30 +00:00
|
|
|
onDelete: 'CASCADE',
|
2020-01-29 19:37:25 +00:00
|
|
|
})
|
|
|
|
@JoinColumn()
|
|
|
|
public note: Note | null;
|
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column({
|
|
|
|
...id(),
|
2021-12-09 14:58:30 +00:00
|
|
|
comment: 'The antenna ID.',
|
2020-01-29 19:37:25 +00:00
|
|
|
})
|
|
|
|
public antennaId: Antenna['id'];
|
|
|
|
|
|
|
|
@ManyToOne(type => Antenna, {
|
2021-12-09 14:58:30 +00:00
|
|
|
onDelete: 'CASCADE',
|
2020-01-29 19:37:25 +00:00
|
|
|
})
|
|
|
|
@JoinColumn()
|
|
|
|
public antenna: Antenna | null;
|
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column('boolean', {
|
2021-12-09 14:58:30 +00:00
|
|
|
default: false,
|
2020-01-29 19:37:25 +00:00
|
|
|
})
|
|
|
|
public read: boolean;
|
|
|
|
}
|