Index: build/DatabaseStructure.sql =================================================================== diff -u -r638c4746bf63c84c946198334f505c0c3ba245cf -r6ff3b2dc5571db2ffd5421d79aa8d51fb3d61d96 --- build/DatabaseStructure.sql (.../DatabaseStructure.sql) (revision 638c4746bf63c84c946198334f505c0c3ba245cf) +++ build/DatabaseStructure.sql (.../DatabaseStructure.sql) (revision 6ff3b2dc5571db2ffd5421d79aa8d51fb3d61d96) @@ -1,6 +1,6 @@ /* ---------------------------------------------------- */ /* Generated by Enterprise Architect Version 14.1 */ -/* Created On : 07-dec-2021 16:05:31 */ +/* Created On : 15-dec-2021 10:19:33 */ /* DBMS : SQLite */ /* ---------------------------------------------------- */ @@ -400,6 +400,8 @@ 'InAssemblyOutputComments' TEXT NULL, 'NotInAssemblyComments' TEXT NULL, 'CalculationsInputComments' TEXT NULL, + 'FailurePathAssemblyProbabilityResultType' TINYINT (1) NOT NULL, -- Enum: Automatic = 1, Manual = 2 + 'ManualFailurePathAssemblyProbability' REAL NULL, CONSTRAINT 'FK_FailureMechanismEntity_AssessmentSectionEntity' FOREIGN KEY ('AssessmentSectionEntityId') REFERENCES 'AssessmentSectionEntity' ('AssessmentSectionEntityId') ON DELETE Cascade ON UPDATE Cascade, CONSTRAINT 'FK_FailureMechanismEntity_CalculationGroupEntity' FOREIGN KEY ('CalculationGroupEntityId') REFERENCES 'CalculationGroupEntity' ('CalculationGroupEntityId') ON DELETE Cascade ON UPDATE Cascade, CONSTRAINT 'UI_AssessmentSectionEntityId_FailureMechanismType' UNIQUE ('AssessmentSectionEntityId','FailureMechanismType') @@ -1783,12 +1785,14 @@ 'AssessmentSectionEntityId' INTEGER NOT NULL, 'Name' VARCHAR (260) NULL, 'Order' INT (4) NOT NULL, - 'InAssembly' TINYINT (1) NOT NULL, + 'InAssembly' TINYINT (1) NOT NULL, -- true or false 'FailureMechanismSectionCollectionSourcePath' TEXT NULL, 'InAssemblyInputComments' TEXT NULL, 'InAssemblyOutputComments' TEXT NULL, 'NotInAssemblyComments' TEXT NULL, 'N' REAL NOT NULL, + 'FailurePathAssemblyProbabilityResultType' TINYINT (1) NOT NULL, -- Enum: Automatic = 1, Manual = 2 + 'ManualFailurePathAssemblyProbability' REAL NULL, CONSTRAINT 'FK_SpecificFailurePathEntity_AssessmentSectionEntity' FOREIGN KEY ('AssessmentSectionEntityId') REFERENCES 'AssessmentSectionEntity' ('AssessmentSectionEntityId') ON DELETE Cascade ON UPDATE Cascade ) ;