- add additional migration files
- add seeder for collections - coverage x_min, x_max, y_min, y_max - SitelinkController db-independent
This commit is contained in:
parent
4d22498e2d
commit
c082b4bc60
25 changed files with 463 additions and 86 deletions
|
@ -16,11 +16,18 @@ class CreatePersonsTable extends Migration
|
|||
Schema::create('persons', function (Blueprint $table) {
|
||||
$table->increments('id');
|
||||
|
||||
$table->string('name');
|
||||
$table->integer('registered_at');
|
||||
$table->boolean('status')->default(1);
|
||||
|
||||
$table->timestamps();
|
||||
$table->string('academic_title', 255)->nullable();
|
||||
$table->string('date_of_birth', 100)->nullable();
|
||||
$table->string('email', 100);
|
||||
$table->string('first_name', 255);
|
||||
$table->string('last_name', 255);
|
||||
$table->string('place_of_birth', 255)->nullable();
|
||||
$table->string('identifier_orcid', 50)->nullable();
|
||||
$table->string('identifier_gnd', 50)->nullable();
|
||||
$table->string('identifier_misc', 50)->nullable();
|
||||
$table->boolean('status')->nullable()->default(1);
|
||||
$table->integer('registered_at')->nullable();
|
||||
$table->string('name_type', 50)->nullable();
|
||||
});
|
||||
|
||||
Schema::create('link_documents_persons', function (Blueprint $table) {
|
||||
|
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue