- add methods for releasing datasets from submitter
All checks were successful
CI Pipeline / japa-tests (push) Successful in 54s
All checks were successful
CI Pipeline / japa-tests (push) Successful in 54s
- npm updates - side menu with child items - flash messages via HttpContext response (extended via macro)
This commit is contained in:
parent
e0ff71b117
commit
f403c3109f
37 changed files with 1020 additions and 482 deletions
|
@ -15,12 +15,12 @@ export default class LinkDocumentsLicences extends BaseSchema {
|
|||
// table.index('licence_id', 'link_documents_licences_licence_id_index')
|
||||
table.integer('document_id').index('link_documents_licences_document_id_index').notNullable();
|
||||
table
|
||||
.foreign('document_id', 'link_documents_licences_document_id_foreign')
|
||||
.references('id')
|
||||
.inTable('documents')
|
||||
.onDelete('CASCADE') // delete this when document is deleted
|
||||
.onUpdate(' CASCADE');
|
||||
// table.index('licence_id', 'link_documents_licences_document_id_index')
|
||||
.foreign('document_id', 'link_documents_licences_document_id_foreign')
|
||||
.references('id')
|
||||
.inTable('documents')
|
||||
.onDelete('CASCADE') // delete this when document is deleted
|
||||
.onUpdate(' CASCADE');
|
||||
// table.index('licence_id', 'link_documents_licences_document_id_index')
|
||||
table.primary(['licence_id', 'document_id']);
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue