uuid()->primary(); $table->string('type'); $table->string('notifiable_type')->index(); $table->unsignedBigInteger('notifiable_id')->index(); $table->text('data'); $table->timestamp('read_at')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down(): void { Schema::dropIfExists('notifications'); } };