- capitalize dataset tite types

- oai: added dc creator
This commit is contained in:
Arno Kaimbacher 2019-09-16 17:34:57 +02:00
parent 3a67bba19a
commit 8f040c2770
5 changed files with 21 additions and 14 deletions

View file

@ -15,8 +15,9 @@ class CreateDocumentsTable extends Migration
{
Schema::create('documents', function (Blueprint $table) {
$table->increments('id');
$table->string('contributing_corporation', 50)->nullable();
$table->string('creating_corporation', 50);
$table->string('contributing_corporation', 255)->nullable();
$table->string('creating_corporation', 255);
$table->string('publisher_name', 255)->nullable();
$table->dateTime('embargo_date')->nullable();
$table->integer('project_id')->unsigned()->nullable();
$table->foreign('project_id')->references('id')->on('projects');