apskel-pos-backend/migrations/000059_add_image_to_game_prizes.up.sql

7 lines
204 B
MySQL
Raw Permalink Normal View History

2025-09-18 12:01:20 +07:00
-- Add image field to game_prizes table
ALTER TABLE game_prizes
ADD COLUMN image VARCHAR(500);
-- Add comment for the new column
COMMENT ON COLUMN game_prizes.image IS 'URL or path to the prize image';