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
41 lines
998 B
TypeScript
41 lines
998 B
TypeScript
import { column, BaseModel, SnakeCaseNamingStrategy, belongsTo, BelongsTo } from '@ioc:Adonis/Lucid/Orm';
|
|
import { DateTime } from 'luxon';
|
|
import Dataset from './Dataset';
|
|
|
|
export default class DatasetIdentifier extends BaseModel {
|
|
public static namingStrategy = new SnakeCaseNamingStrategy();
|
|
public static primaryKey = 'id';
|
|
public static table = 'dataset_identifiers';
|
|
public static fillable: string[] = ['value', 'label', 'type', 'relation'];
|
|
|
|
@column({
|
|
isPrimary: true,
|
|
})
|
|
public id: number;
|
|
|
|
@column({})
|
|
public dataset_id: number;
|
|
|
|
@column({})
|
|
public type: string;
|
|
|
|
@column({})
|
|
public value: string;
|
|
|
|
@column.dateTime({
|
|
autoCreate: true,
|
|
})
|
|
public created_at?: DateTime;
|
|
|
|
@column.dateTime({
|
|
autoCreate: true,
|
|
autoUpdate: true,
|
|
})
|
|
public updated_at?: DateTime;
|
|
|
|
@belongsTo(() => Dataset, {
|
|
foreignKey: 'dataset_id',
|
|
})
|
|
public dataset: BelongsTo<typeof Dataset>;
|
|
}
|