tinyInteger('warning_id')->unsigned()->autoIncrement(); $table->unsignedBigInteger('employee_id')->nullable(); $table->mediumText('subject')->nullable(); $table->string('type')->nullable(); $table->date('warning_date')->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_warnings'); } };