bigIncrements('id'); $table->unsignedBigInteger('user_id')->index(); $table->unsignedBigInteger('user_checking_id')->nullable(); $table->unsignedInteger('reason_id'); $table->string('status')->default('pending'); $table->text('message')->nullable(); $table->morphs('complaintable'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('complaints'); } }