uuid('id')->primary(); $table->string('nickname'); $table->string('name')->nullable(); $table->boolean('gender_id')->unsigned(); $table->uuid('father_id')->nullable(); $table->uuid('mother_id')->nullable(); $table->uuid('parent_id')->nullable(); $table->date('dob')->nullable(); $table->year('yob')->nullable(); $table->unsignedTinyInteger('birth_order')->nullable(); $table->date('dod')->nullable(); $table->year('yod')->nullable(); $table->string('email')->unique()->nullable(); $table->string('password')->nullable(); $table->string('address')->nullable(); $table->string('city')->nullable(); $table->string('phone')->nullable(); $table->string('photo_path')->nullable(); $table->uuid('manager_id')->nullable(); $table->rememberToken(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('users'); } }