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