id(); $table->string('title'); $table->text('description'); $table->morphs('subject'); $table->morphs('target'); $table->morphs('causer'); $table->integer('status')->default(ApprovalStatus::APPROVED); $table->softDeletes(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('notifications'); } }