Arno Kaimbacher
08c2edca3b
Some checks failed
CI Pipeline / japa-tests (push) Failing after 54s
- renamed 'models' and 'validators' folders - removed unneccessary files in contracts folder
37 lines
912 B
TypeScript
37 lines
912 B
TypeScript
import { column, belongsTo } from '@adonisjs/lucid/orm';
|
|
import Dataset from './dataset.js';
|
|
import BaseModel from './base_model.js';
|
|
import type { BelongsTo } from "@adonisjs/lucid/types/relations";
|
|
|
|
// import { DatasetRelatedBaseModel } from './BaseModel';
|
|
|
|
export default class Title extends BaseModel {
|
|
public static primaryKey = 'id';
|
|
public static table = 'dataset_titles';
|
|
public static selfAssignPrimaryKey = false;
|
|
public static timestamps = false;
|
|
public static fillable: string[] = ['value', 'type', 'language'];
|
|
|
|
@column({
|
|
isPrimary: true,
|
|
})
|
|
public id: number;
|
|
|
|
@column({})
|
|
public document_id: number;
|
|
|
|
@column()
|
|
public type: string;
|
|
|
|
@column()
|
|
public value: string;
|
|
|
|
@column()
|
|
public language: string;
|
|
|
|
@belongsTo(() => Dataset, {
|
|
foreignKey: 'document_id',
|
|
})
|
|
public dataset: BelongsTo<typeof Dataset>;
|
|
}
|