10 lines
338 B
SQL
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; |