id(); $table->string('model_type'); // "App\Models\Product" ODER "App\Models\ProductVariant" $table->unsignedBigInteger('model_id'); $table->string('file_path'); $table->string('type')->default('image'); // 'image', 'video', 'pdf', '3d_model' $table->string('alt_text')->nullable(); $table->integer('order_column')->default(0); $table->timestamps(); $table->index(['model_type', 'model_id']); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('media'); } };