tinyInteger('complaint_id')->unsigned()->autoIncrement(); $table->unsignedBigInteger('employee_id')->nullable(); $table->date('complaint_date')->nullable(); $table->unsignedBigInteger('complaint_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_complaints'); } };