Files
tilbudgivern/archive/sql/add_wall_height_column.sql
2025-10-30 18:28:58 +00:00

10 lines
338 B
SQL

-- Add wall_height column to roof_geometry table
-- Run this SQL to enable wall height storage
USE tilbudgivern;
-- Add wall_height column if it doesn't exist
ALTER TABLE roof_geometry ADD COLUMN IF NOT EXISTS wall_height DECIMAL(10,2) DEFAULT 0.0 COMMENT 'Wall height in meters';
-- Verify the column was added
DESCRIBE roof_geometry;