diff options
Diffstat (limited to 'src/wixext/DifxAppTableDefinitions.cs')
-rw-r--r-- | src/wixext/DifxAppTableDefinitions.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wixext/DifxAppTableDefinitions.cs b/src/wixext/DifxAppTableDefinitions.cs index 8c92c94f..a6c26444 100644 --- a/src/wixext/DifxAppTableDefinitions.cs +++ b/src/wixext/DifxAppTableDefinitions.cs | |||
@@ -8,14 +8,14 @@ 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 | DifxAppSymbolDefinitions.MsiDriverPackages, |
12 | new[] | 12 | new[] |
13 | { | 13 | { |
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("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), |
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("Flags", ColumnType.Number, 4, primaryKey: false, nullable: false, ColumnCategory.Unknown, minValue: 0, maxValue: 31, description: "Flags for installing and uninstalling driver packages"), |
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 | new ColumnDefinition("Sequence", ColumnType.Number, 4, primaryKey: false, nullable: true, ColumnCategory.Unknown, minValue: 0, description: "Order in which the driver packages are processed"), |
17 | }, | 17 | }, |
18 | tupleIdIsPrimaryKey: false | 18 | symbolIdIsPrimaryKey: false |
19 | ); | 19 | ); |
20 | 20 | ||
21 | public static readonly TableDefinition[] All = new[] | 21 | public static readonly TableDefinition[] All = new[] |