2023-06-22 15:20:04 +00:00
|
|
|
import { column, belongsTo, BelongsTo } from '@ioc:Adonis/Lucid/Orm';
|
|
|
|
import Dataset from './Dataset';
|
|
|
|
import BaseModel from './BaseModel';
|
2023-09-26 15:53:00 +00:00
|
|
|
// import { DatasetRelatedBaseModel } from './BaseModel';
|
2023-06-22 15:20:04 +00:00
|
|
|
|
|
|
|
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'];
|
|
|
|
|
2023-11-22 16:06:55 +00:00
|
|
|
@column({
|
|
|
|
isPrimary: true,
|
|
|
|
})
|
|
|
|
public id: number;
|
|
|
|
|
2023-06-22 15:20:04 +00:00
|
|
|
@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>;
|
|
|
|
}
|