38682-vm/db/migrations/025_add_display_layout_to_ads.sql
2026-02-24 03:07:06 +00:00

3 lines
180 B
SQL

-- Add display_layout column to ads_images table
ALTER TABLE ads_images ADD COLUMN IF NOT EXISTS display_layout ENUM('both', 'split', 'fullscreen') DEFAULT 'both' AFTER is_active;