- name_types of persons

This commit is contained in:
Arno Kaimbacher 2019-09-16 14:07:10 +02:00
parent 69f6f250b9
commit 3a67bba19a
3 changed files with 4 additions and 4 deletions

View file

@ -27,7 +27,7 @@ class CreatePersonsTable extends Migration
$table->string('identifier_misc', 50)->nullable();
$table->boolean('status')->nullable()->default(1);
$table->integer('registered_at')->nullable();
$table->enum('name_type', ['author', 'contributor', 'other'])->nullable();
$table->enum('name_type', ['Organizational', 'Personal'])->nullable();
});
Schema::create('link_documents_persons', function (Blueprint $table) {