id(); $table->string('name'); $table->string('image_path')->nullable(); // scene background image $table->string('video_path')->nullable(); // animated/video version of the scene $table->string('sound_path')->nullable(); // scene ambient sound $table->integer('order')->default(0); $table->boolean('is_active')->default(true); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('scenes'); } };