dbfdg bigIncrements('id'); $table->integer('employee_id')->default(0); $table->date('notice_date'); $table->date('resignation_date'); $table->string('description')->nullable(); $table->integer('created_by'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('resignations'); } }