id(); $table->string('full_name'); $table->string('phone'); $table->string('email'); $table->boolean('has_visa_permit'); $table->boolean('has_skill_assessed'); $table->string('resume'); $table->string('country'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('applicants'); } };