increments('id'); $table->string('first_name', 50)->nullable(); $table->string('middle_name', 50)->nullable(); $table->string('last_name', 50)->nullable(); $table->string('family_name', 50)->nullable(); $table->string('nationality', 60)->nullable(); $table->date('dob')->nullable(); $table->string('passport_no', 30)->nullable(); $table->date('passport_expiry')->nullable(); $table->string('emirates_id', 30)->nullable(); $table->text('description')->nullable(); $table->integer('user_id')->nullable(); $table->string('user_type', 20)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('names'); } }