diff options
author | Bob Arnson <bob@firegiant.com> | 2022-12-21 17:00:32 -0500 |
---|---|---|
committer | Bob Arnson <github@bobs.org> | 2022-12-21 18:16:45 -0500 |
commit | 5b57b401ce25da930d66f1b5ef2cb8fac0ce1958 (patch) | |
tree | c68290a8be899877ff8c66be8632fb19778e6f8a /src/ext/Http/wixext/HttpTableDefinitions.cs | |
parent | 5e8f6c5cfc28c8c70ef0339d7e1bb73069642915 (diff) | |
download | wix-5b57b401ce25da930d66f1b5ef2cb8fac0ce1958.tar.gz wix-5b57b401ce25da930d66f1b5ef2cb8fac0ce1958.tar.bz2 wix-5b57b401ce25da930d66f1b5ef2cb8fac0ce1958.zip |
Fix key table names in colum definitions.
- Also fix typo.
- Make WiX source file parseable.
Diffstat (limited to 'src/ext/Http/wixext/HttpTableDefinitions.cs')
-rw-r--r-- | src/ext/Http/wixext/HttpTableDefinitions.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ext/Http/wixext/HttpTableDefinitions.cs b/src/ext/Http/wixext/HttpTableDefinitions.cs index 421638a0..ea08337f 100644 --- a/src/ext/Http/wixext/HttpTableDefinitions.cs +++ b/src/ext/Http/wixext/HttpTableDefinitions.cs | |||
@@ -43,7 +43,7 @@ namespace WixToolset.Http | |||
43 | new[] | 43 | new[] |
44 | { | 44 | { |
45 | new ColumnDefinition("WixHttpUrlAce", ColumnType.String, 72, primaryKey: true, nullable: false, ColumnCategory.Identifier, description: "The non-localized primary key for the table.", modularizeType: ColumnModularizeType.Column), | 45 | new ColumnDefinition("WixHttpUrlAce", ColumnType.String, 72, primaryKey: true, nullable: false, ColumnCategory.Identifier, description: "The non-localized primary key for the table.", modularizeType: ColumnModularizeType.Column), |
46 | new ColumnDefinition("WixHttpUrlReservation_", ColumnType.String, 72, primaryKey: false, nullable: false, ColumnCategory.Identifier, keyTable: "WixHttpUrlReservation", keyColumn: 1, description: "Foreign key into the WixHttpUrlReservation table.", modularizeType: ColumnModularizeType.Column), | 46 | new ColumnDefinition("WixHttpUrlReservation_", ColumnType.String, 72, primaryKey: false, nullable: false, ColumnCategory.Identifier, keyTable: "Wix4HttpUrlReservation", keyColumn: 1, description: "Foreign key into the Wix4HttpUrlReservation table.", modularizeType: ColumnModularizeType.Column), |
47 | new ColumnDefinition("SecurityPrincipal", ColumnType.String, 0, primaryKey: false, nullable: false, ColumnCategory.Formatted, description: "The security principal for this ACE.", modularizeType: ColumnModularizeType.Property), | 47 | new ColumnDefinition("SecurityPrincipal", ColumnType.String, 0, primaryKey: false, nullable: false, ColumnCategory.Formatted, description: "The security principal for this ACE.", modularizeType: ColumnModularizeType.Property), |
48 | new ColumnDefinition("Rights", ColumnType.Number, 4, primaryKey: false, nullable: false, ColumnCategory.Unknown, minValue: 0, maxValue: 1073741824, description: "The rights for this ACE."), | 48 | new ColumnDefinition("Rights", ColumnType.Number, 4, primaryKey: false, nullable: false, ColumnCategory.Unknown, minValue: 0, maxValue: 1073741824, description: "The rights for this ACE."), |
49 | }, | 49 | }, |