- licence name_long varchar 200

- remove and add authors and creators in edit form
- EditDataset.js
- add authors array to Dataset.ts
- use id in PersonTable.vue
- remove active styles from create-step1.blade.php
This commit is contained in:
Arno Kaimbacher 2020-01-09 18:42:09 +01:00
parent f6442b5f7a
commit a8ea6120fd
17 changed files with 146 additions and 28 deletions

View file

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