Arno Kaimbacher
b6b1c90ff8
All checks were successful
CI Pipeline / japa-tests (push) Successful in 50s
- add @types/clamscan and clamscan for node - package clamav-daemon and clamav-frehshclam for docker - add API Controller: HomeController.ts for /api/years and /api/sitelinks/{year} change root path of file storage from '/storage/app/public/files' to '/storage/app/public' - adapt dockerfile to use node:18-bookworm-slim
41 lines
999 B
TypeScript
41 lines
999 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>;
|
|
}
|