-- Migration: Multi-image support for products CREATE TABLE product_images ( id UUID PRIMARY KEY DEFAULT uuid_generate_v4(), product_id UUID NOT NULL REFERENCES products(id) ON DELETE CASCADE, url VARCHAR(500) NOT NULL, alt_text VARCHAR(255), sort_order INTEGER DEFAULT 0, created_at TIMESTAMP WITH TIME ZONE DEFAULT CURRENT_TIMESTAMP ); CREATE INDEX idx_product_images_product_id ON product_images(product_id);