Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions db-23.04-to-25.01.sql
Original file line number Diff line number Diff line change
Expand Up @@ -111,4 +111,10 @@ ALTER TABLE fac_TemplatePowerPorts ADD COLUMN ConnectorID int(11) DEFAULT NULL A
ALTER TABLE fac_TemplatePowerPorts ADD COLUMN PhaseID int(11) DEFAULT NULL AFTER ConnectorID;
ALTER TABLE fac_TemplatePowerPorts ADD COLUMN VoltageID int(11) DEFAULT NULL AFTER PhaseID;

--
-- Increase fac_Config.Value column size for upgraded installations
-- New installs already have TEXT type from create.sql
--
ALTER TABLE fac_Config MODIFY Value text NOT NULL;

UPDATE fac_Config set Value="25.01" WHERE Parameter="Version";