id(); $table->foreignId('page_id')->constrained('pages')->onDelete('cascade'); $table->enum('type', ['text', 'image', 'video']); $table->string('body'); $table->string('title')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('contents'); } };