Development #139

Merged
djankowski merged 8 commits from Development into master 2023-10-18 10:37:59 -04:00
6 changed files with 54 additions and 7 deletions
Showing only changes of commit 22e70d03ad - Show all commits

View File

@@ -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 ******/