2024-03-14 19:25:27 +00:00
|
|
|
import { column, belongsTo } from '@adonisjs/lucid/orm';
|
2024-04-30 09:50:50 +00:00
|
|
|
import Dataset from './dataset.js';
|
|
|
|
import BaseModel from './base_model.js';
|
2024-03-14 19:25:27 +00:00
|
|
|
import type { BelongsTo } from "@adonisjs/lucid/types/relations";
|
2023-06-22 15:20:04 +00:00
|
|
|
|
|
|
|
export default class Description extends BaseModel {
|
|
|
|
public static primaryKey = 'id';
|
|
|
|
public static table = 'dataset_abstracts';
|
|
|
|
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>;
|
|
|
|
}
|