increments('id'); $table->string('gender', 220)->nullable(); $table->string('first_name', 220)->nullable(); $table->string('last_name', 220)->nullable(); $table->date('dob')->nullable(); $table->string('birthplace', 220)->nullable(); $table->string('country', 220)->nullable(); $table->string('marital_status', 220)->nullable(); $table->string('children', 220)->nullable(); $table->string('religion', 220)->nullable(); $table->string('profile_pitcure', 220)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('candidates'); } }