increments('id'); $table->string('name', 255)->nullable(); $table->string('email', 255)->nullable(); $table->string('mobile', 45)->nullable(); $table->integer('job_id')->nullable(); $table->string('attachment', 45)->nullable(); $table->string('status', 45)->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('career_applications'); } }