33941-vm/db/migrations/010_fix_horses_table_schema.sql
2025-09-11 10:05:52 +00:00

7 lines
261 B
SQL

-- Add age and image_path columns, and remove unused columns from the horses table.
ALTER TABLE `horses`
ADD COLUMN `age` INT NULL AFTER `breed`,
ADD COLUMN `image_path` VARCHAR(255) NULL AFTER `disciplines`,
DROP COLUMN `description`,
DROP COLUMN `image_url`;