Files
tilbudgivern/add_wall_height_column.sql
Alex e82f2c7a8f feat: Enhance GeometryInput to auto-select roof type based on selected packages
style: Add form help text styling in ProjectFlow.css

fix: Update SmartPackagesEnhanced to use strict equality checks for isCustom

refactor: Modify unified-server.js to use material_name instead of sku and implement new project_packages table for package management

chore: Create new MCP server configuration files for deployment

chore: Add SQL script to introduce wall_height column in roof_geometry table

build: Implement build and test script for local development

docs: Provide instructions for updating proxy server configuration

chore: Add quick deploy script for streamlined deployment process

test: Create comprehensive test, build, and deploy script for Tilbudgivern
2025-09-26 14:36:19 +02: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;