mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-27 12:08:02 -05:00
e641681483
Signed-off-by: David Mehren <dmehren1@gmail.com>
41 lines
839 B
TypeScript
41 lines
839 B
TypeScript
import {
|
|
AutoIncrement,
|
|
BelongsTo,
|
|
Column,
|
|
createIndexDecorator,
|
|
DataType,
|
|
ForeignKey,
|
|
Model,
|
|
PrimaryKey,
|
|
Table
|
|
} from 'sequelize-typescript'
|
|
import { Note, User } from './index'
|
|
|
|
const NoteUserIndex = createIndexDecorator({ unique: true })
|
|
|
|
@Table
|
|
export class Author extends Model<Author> {
|
|
@PrimaryKey
|
|
@AutoIncrement
|
|
@Column(DataType.INTEGER)
|
|
id: number
|
|
|
|
@Column(DataType.STRING)
|
|
color: string
|
|
|
|
@ForeignKey(() => Note)
|
|
@NoteUserIndex
|
|
@Column(DataType.UUID)
|
|
noteId: string
|
|
|
|
@BelongsTo(() => Note, { foreignKey: 'noteId', onDelete: 'CASCADE', constraints: false, hooks: true })
|
|
note: Note
|
|
|
|
@ForeignKey(() => User)
|
|
@NoteUserIndex
|
|
@Column(DataType.UUID)
|
|
userId: string
|
|
|
|
@BelongsTo(() => User, { foreignKey: 'userId', onDelete: 'CASCADE', constraints: false, hooks: true })
|
|
user: User
|
|
}
|