aboutsummaryrefslogtreecommitdiff
path: root/src/wixext/DifxAppTableDefinitions.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/wixext/DifxAppTableDefinitions.cs')
-rw-r--r--src/wixext/DifxAppTableDefinitions.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wixext/DifxAppTableDefinitions.cs b/src/wixext/DifxAppTableDefinitions.cs
index 1ee33196..8c92c94f 100644
--- a/src/wixext/DifxAppTableDefinitions.cs
+++ b/src/wixext/DifxAppTableDefinitions.cs
@@ -8,13 +8,13 @@ namespace WixToolset.DifxApp
8 { 8 {
9 public static readonly TableDefinition MsiDriverPackages = new TableDefinition( 9 public static readonly TableDefinition MsiDriverPackages = new TableDefinition(
10 "MsiDriverPackages", 10 "MsiDriverPackages",
11 DifxAppTupleDefinitions.MsiDriverPackages,
11 new[] 12 new[]
12 { 13 {
13 new ColumnDefinition("Component", ColumnType.String, 72, primaryKey: true, nullable: false, ColumnCategory.Identifier, keyTable: "Component", keyColumn: 1, description: "Name of the component that represents the driver package", modularizeType: ColumnModularizeType.Column), 14 new ColumnDefinition("Component", ColumnType.String, 72, primaryKey: true, nullable: false, ColumnCategory.Identifier, keyTable: "Component", keyColumn: 1, description: "Name of the component that represents the driver package", modularizeType: ColumnModularizeType.Column),
14 new ColumnDefinition("Flags", ColumnType.Number, 4, primaryKey: false, nullable: false, ColumnCategory.Unknown, minValue: 0, maxValue: 31, description: "Flags for installing and uninstalling driver packages"), 15 new ColumnDefinition("Flags", ColumnType.Number, 4, primaryKey: false, nullable: false, ColumnCategory.Unknown, minValue: 0, maxValue: 31, description: "Flags for installing and uninstalling driver packages"),
15 new ColumnDefinition("Sequence", ColumnType.Number, 4, primaryKey: false, nullable: true, ColumnCategory.Unknown, minValue: 0, description: "Order in which the driver packages are processed"), 16 new ColumnDefinition("Sequence", ColumnType.Number, 4, primaryKey: false, nullable: true, ColumnCategory.Unknown, minValue: 0, description: "Order in which the driver packages are processed"),
16 }, 17 },
17 tupleDefinitionName: DifxAppTupleDefinitions.MsiDriverPackages.Name,
18 tupleIdIsPrimaryKey: false 18 tupleIdIsPrimaryKey: false
19 ); 19 );
20 20