mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-13 11:33:09 +02:00
35 lines
731 B
TypeScript
35 lines
731 B
TypeScript
import { PrimaryColumn, Entity, Index, JoinColumn, Column, ManyToOne } from 'typeorm';
|
|
import { id } from '../id.js';
|
|
import { Note } from './Note.js';
|
|
import { User } from './User.js';
|
|
|
|
@Entity()
|
|
@Index(['userId', 'noteId'], { unique: true })
|
|
export class NoteFavorite {
|
|
@PrimaryColumn(id())
|
|
public id: string;
|
|
|
|
@Column('timestamp with time zone', {
|
|
comment: 'The created date of the NoteFavorite.',
|
|
})
|
|
public createdAt: Date;
|
|
|
|
@Index()
|
|
@Column(id())
|
|
public userId: User['id'];
|
|
|
|
@ManyToOne(type => User, {
|
|
onDelete: 'CASCADE',
|
|
})
|
|
@JoinColumn()
|
|
public user: User | null;
|
|
|
|
@Column(id())
|
|
public noteId: Note['id'];
|
|
|
|
@ManyToOne(type => Note, {
|
|
onDelete: 'CASCADE',
|
|
})
|
|
@JoinColumn()
|
|
public note: Note | null;
|
|
}
|