tinyInteger('resignation_id')->unsigned()->autoIncrement(); $table->unsignedBigInteger('employee_id')->nullable(); $table->date('resignation_date')->nullable(); $table->date('approved_date')->nullable(); $table->unsignedBigInteger('approved_by')->nullable(); $table->mediumText('description')->nullable(); $table->mediumText('remarks')->nullable(); $table->integer('status')->nullable(); $table->unsignedBigInteger('createdBy')->nullable(); $table->unsignedBigInteger('updatedBy')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('tbl_resignations'); } };