tinyInteger('appreciation_id')->unsigned()->autoIncrement(); $table->string('title')->nullable(); $table->string('alias')->nullable(); $table->string('type')->nullable(); $table->unsignedBigInteger('employee_id')->nullable(); $table->unsignedBigInteger('appreciated_by')->nullable(); $table->date('appreciated_date')->nullable(); $table->unsignedBigInteger('status')->nullable(); $table->mediumText('description')->nullable(); $table->mediumText('remarks')->nullable(); $table->unsignedBigInteger('createdBy')->nullable(); $table->unsignedBigInteger('updatedBy')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('tbl_appreciations'); } };