id(); $table->foreignId('user_id')->constrained()->onDelete('cascade'); $table->text('content'); $table->nullableMorphs('noteable'); // noteable_id & noteable_type $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('notes'); } };