Files
Abschluss-Projekt/backend/database/migration_add_image_dimensions.sql
2025-11-28 12:50:27 +01:00

13 lines
296 B
SQL

-- Migration: Add width and height columns to image table
-- Date: 2025-11-27
USE myapp;
-- Add width and height columns to image table
ALTER TABLE `image`
ADD COLUMN `width` FLOAT NULL AFTER `image_path`,
ADD COLUMN `height` FLOAT NULL AFTER `width`;
-- Verify the changes
DESCRIBE `image`;