increments('id'); $table->integer('candidate_id')->nullable(); $table->integer('type_id')->nullable(); $table->date('issue_date')->nullable(); $table->date('expiry_date')->nullable(); $table->text('documents')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('docs'); } }