7 lines
181 B
SQL
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`;
|
|
|