- add model DatasetReference.ts
All checks were successful
CI Pipeline / japa-tests (push) Successful in 48s
All checks were successful
CI Pipeline / japa-tests (push) Successful in 48s
- add references inside Creta.vue for Submitter /dataset - npm updates - extended enum types - added relations for Dataset.ts
This commit is contained in:
parent
5ce4f0b018
commit
f6d735d0fd
10 changed files with 580 additions and 592 deletions
|
|
@ -7,6 +7,21 @@ export default class Coverage extends BaseModel {
|
|||
public static primaryKey = 'id';
|
||||
public static table = 'coverage';
|
||||
public static selfAssignPrimaryKey = false;
|
||||
public static fillable: string[] = [
|
||||
'elevation_min',
|
||||
'elevation_max',
|
||||
'elevation_absolut',
|
||||
'depth_min',
|
||||
'depth_max',
|
||||
'depth_absolut',
|
||||
'time_min',
|
||||
'time_max',
|
||||
'time_absolut',
|
||||
'x_min',
|
||||
'x_max',
|
||||
'y_min',
|
||||
'y_max',
|
||||
];
|
||||
|
||||
@column({
|
||||
isPrimary: true,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue