id(); $table->foreignId('user_id')->constrained()->nullOnDelete(); $table->text('text'); $table->unsignedBigInteger('notable_id'); $table->string('notable_type'); $table->timestamps(); $table->index(['user_id', 'notable_id', 'notable_type']); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('notes'); } };