diff --git a/PROMS/VEPROMS User Interface/PROMSFixes.Sql b/PROMS/VEPROMS User Interface/PROMSFixes.Sql index fddfb39c..58b265fa 100644 --- a/PROMS/VEPROMS User Interface/PROMSFixes.Sql +++ b/PROMS/VEPROMS User Interface/PROMSFixes.Sql @@ -21942,7 +21942,11 @@ GO */ /****** Add the ApplicablePlant field to the Formats table ******/ -ALTER TABLE Formats ADD ApplicablePlant int NULL; +/****** Add the ApplicablePlant field to the Formats table ******/ +IF COL_LENGTH('Formats', 'ApplicablePlant') IS NULL +BEGIN + ALTER TABLE Formats ADD ApplicablePlant int NULL; +END GO /****** Update the Formats table with the appropriate ApplicablePlant value ******/