Arno Kaimbacher
6fa22aad9b
Some checks failed
CI Pipeline / japa-tests (push) Failing after 54s
- added the possibility to delete 'inprogress' dataset again for the submitter - concat run commands insider Dockerfile for better docker image - npm updates - add own Exception classes HttpException.ts and InternalServerException.ts
60 lines
1.4 KiB
TypeScript
60 lines
1.4 KiB
TypeScript
import { column, BaseModel, SnakeCaseNamingStrategy, belongsTo, BelongsTo } from '@ioc:Adonis/Lucid/Orm';
|
|
import { DateTime } from 'luxon';
|
|
import Dataset from './Dataset';
|
|
|
|
export default class DatasetReference extends BaseModel {
|
|
public static namingStrategy = new SnakeCaseNamingStrategy();
|
|
public static primaryKey = 'id';
|
|
public static table = 'document_references';
|
|
public static fillable: string[] = ['value', 'label', 'type', 'relation'];
|
|
|
|
@column({
|
|
isPrimary: true,
|
|
})
|
|
public id: number;
|
|
|
|
@column({})
|
|
public document_id: number;
|
|
|
|
@column({})
|
|
public related_document_id?: number;
|
|
|
|
@column({})
|
|
public type: string;
|
|
|
|
@column({})
|
|
public relation: string;
|
|
|
|
@column({})
|
|
public value: string;
|
|
|
|
@column({})
|
|
public label: string;
|
|
|
|
@column.dateTime({
|
|
autoCreate: true,
|
|
})
|
|
public created_at?: DateTime;
|
|
|
|
@column.dateTime({
|
|
autoCreate: true,
|
|
autoUpdate: true,
|
|
})
|
|
public updated_at?: DateTime;
|
|
|
|
@belongsTo(() => Dataset, {
|
|
foreignKey: 'document_id',
|
|
})
|
|
public dataset: BelongsTo<typeof Dataset>;
|
|
|
|
// Reference.belongsTo(Dataset, {
|
|
// foreignKey: "related_document_id",
|
|
// as: "new_dataset",
|
|
// include: "identifier"
|
|
// });
|
|
@belongsTo(() => Dataset, {
|
|
foreignKey: 'related_document_id',
|
|
})
|
|
public new_dataset: BelongsTo<typeof Dataset>;
|
|
}
|