- add name columns to table 'document_licences'

- add open access hints to dc and datacite (xslt)
This commit is contained in:
Arno Kaimbacher 2020-05-19 20:18:31 +02:00
parent 35e71a13c3
commit 671cdb1e4e
3 changed files with 17 additions and 3 deletions

View file

@ -25,6 +25,7 @@ class CreateLicencesTable extends Migration
$table->string('link_sign', 200)->nullable();
$table->string('mime_type', 30)->nullable();
$table->string('name_long', 200);
$table->string('name', 50);
$table->boolean('pod_allowed')->default(false);
$table->tinyInteger('sort_order');
});