bigIncrements('id'); $table->unsignedBigInteger('contact_id'); $table->unsignedBigInteger('task_history_id'); $table->enum('status', ['pending', 'sent', 'error'])->default('pending'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('notifications'); } }