forked from geolba/tethys.backend
- dark modus for geoera search (keywords)
- enum ContributorTypes - add contributor types for creating a dataset - npm updates - tailwind styling for _table.css - adapting migration code for dataset_11_subject.ts
This commit is contained in:
parent
3ea2e8ca94
commit
b1d587d9f5
9 changed files with 156 additions and 88 deletions
|
@ -9,7 +9,7 @@ export default class DatasetSubjects extends BaseSchema {
|
|||
table.bigIncrements('id').defaultTo("nextval('dataset_subjects_id_seq')");
|
||||
table.string('language', 3);
|
||||
// table.string('type', 255).notNullable().defaultTo('uncontrolled');
|
||||
table.enum('type', Object.values(SubjectTypes)).defaultTo('uncontrolled');
|
||||
table.enum('type', Object.keys(SubjectTypes)).defaultTo('uncontrolled');
|
||||
table.string('value', 255).notNullable();
|
||||
table.string('external_key', 255);
|
||||
table.timestamp('created_at', { useTz: false }).nullable();
|
||||
|
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue