Files
cbd420/migrations/add_image_url.sql
2025-12-20 10:32:36 +05:30

7 lines
181 B
SQL

-- Migration: Add image_url column to drops table
-- Run this to add support for image uploads
ALTER TABLE `drops`
ADD COLUMN `image_url` VARCHAR(255) DEFAULT NULL AFTER `unit`;