Add SQL script for HeatTreat application

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
cproudlock
2025-12-09 08:11:13 -05:00
parent a05df96cbf
commit 9f58adaf19

View File

@@ -0,0 +1,14 @@
-- Add HeatTreat application for PC type detection
-- Run on production database
-- Date: 2025-12-09
-- Check if HeatTreat already exists before inserting
INSERT INTO applications (appname, appdescription, supportteamid, isactive)
SELECT 'HeatTreat', 'Heat Treat monitoring and control software', 1, 1
FROM dual
WHERE NOT EXISTS (SELECT 1 FROM applications WHERE appname = 'HeatTreat');
-- Verify the insert
SELECT appid, appname, appdescription, isactive
FROM applications
WHERE appname = 'HeatTreat';