diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2020-04-13 19:42:12 +1000 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2020-04-13 19:42:12 +1000 |
commit | 836cb478b674e866e1430c03afb9651e85b48f2a (patch) | |
tree | 4b731d28d9bbb18607342dd58c8da731742bee13 /src/wixext | |
parent | f92c72546326fb9b893bb7760691ee67ec7ab832 (diff) | |
download | wix-836cb478b674e866e1430c03afb9651e85b48f2a.tar.gz wix-836cb478b674e866e1430c03afb9651e85b48f2a.tar.bz2 wix-836cb478b674e866e1430c03afb9651e85b48f2a.zip |
Update dependencies.
Diffstat (limited to 'src/wixext')
-rw-r--r-- | src/wixext/HttpTableDefinitions.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wixext/HttpTableDefinitions.cs b/src/wixext/HttpTableDefinitions.cs index 57422475..2ec26b63 100644 --- a/src/wixext/HttpTableDefinitions.cs +++ b/src/wixext/HttpTableDefinitions.cs | |||
@@ -8,6 +8,7 @@ namespace WixToolset.Http | |||
8 | { | 8 | { |
9 | public static readonly TableDefinition WixHttpUrlReservation = new TableDefinition( | 9 | public static readonly TableDefinition WixHttpUrlReservation = new TableDefinition( |
10 | "WixHttpUrlReservation", | 10 | "WixHttpUrlReservation", |
11 | HttpTupleDefinitions.WixHttpUrlReservation, | ||
11 | new[] | 12 | new[] |
12 | { | 13 | { |
13 | new ColumnDefinition("WixHttpUrlReservation", ColumnType.String, 72, primaryKey: true, nullable: false, ColumnCategory.Identifier, description: "The non-localized primary key for the table.", modularizeType: ColumnModularizeType.Column), | 14 | new ColumnDefinition("WixHttpUrlReservation", ColumnType.String, 72, primaryKey: true, nullable: false, ColumnCategory.Identifier, description: "The non-localized primary key for the table.", modularizeType: ColumnModularizeType.Column), |
@@ -16,12 +17,12 @@ namespace WixToolset.Http | |||
16 | new ColumnDefinition("Url", ColumnType.String, 0, primaryKey: false, nullable: false, ColumnCategory.Formatted, description: "URL to be reserved.", modularizeType: ColumnModularizeType.Property), | 17 | new ColumnDefinition("Url", ColumnType.String, 0, primaryKey: false, nullable: false, ColumnCategory.Formatted, description: "URL to be reserved.", modularizeType: ColumnModularizeType.Property), |
17 | new ColumnDefinition("Component_", ColumnType.String, 72, primaryKey: false, nullable: false, ColumnCategory.Identifier, keyTable: "Component", keyColumn: 1, description: "Foreign key into the Component table referencing the component that controls the URL reservation.", modularizeType: ColumnModularizeType.Column), | 18 | new ColumnDefinition("Component_", ColumnType.String, 72, primaryKey: false, nullable: false, ColumnCategory.Identifier, keyTable: "Component", keyColumn: 1, description: "Foreign key into the Component table referencing the component that controls the URL reservation.", modularizeType: ColumnModularizeType.Column), |
18 | }, | 19 | }, |
19 | tupleDefinitionName: HttpTupleDefinitions.WixHttpUrlReservation.Name, | ||
20 | tupleIdIsPrimaryKey: true | 20 | tupleIdIsPrimaryKey: true |
21 | ); | 21 | ); |
22 | 22 | ||
23 | public static readonly TableDefinition WixHttpUrlAce = new TableDefinition( | 23 | public static readonly TableDefinition WixHttpUrlAce = new TableDefinition( |
24 | "WixHttpUrlAce", | 24 | "WixHttpUrlAce", |
25 | HttpTupleDefinitions.WixHttpUrlAce, | ||
25 | new[] | 26 | new[] |
26 | { | 27 | { |
27 | new ColumnDefinition("WixHttpUrlAce", ColumnType.String, 72, primaryKey: true, nullable: false, ColumnCategory.Identifier, description: "The non-localized primary key for the table.", modularizeType: ColumnModularizeType.Column), | 28 | new ColumnDefinition("WixHttpUrlAce", ColumnType.String, 72, primaryKey: true, nullable: false, ColumnCategory.Identifier, description: "The non-localized primary key for the table.", modularizeType: ColumnModularizeType.Column), |
@@ -29,7 +30,6 @@ namespace WixToolset.Http | |||
29 | new ColumnDefinition("SecurityPrincipal", ColumnType.String, 0, primaryKey: false, nullable: false, ColumnCategory.Formatted, description: "The security principal for this ACE.", modularizeType: ColumnModularizeType.Property), | 30 | new ColumnDefinition("SecurityPrincipal", ColumnType.String, 0, primaryKey: false, nullable: false, ColumnCategory.Formatted, description: "The security principal for this ACE.", modularizeType: ColumnModularizeType.Property), |
30 | new ColumnDefinition("Rights", ColumnType.Number, 4, primaryKey: false, nullable: false, ColumnCategory.Unknown, minValue: 0, maxValue: 1073741824, description: "The rights for this ACE."), | 31 | new ColumnDefinition("Rights", ColumnType.Number, 4, primaryKey: false, nullable: false, ColumnCategory.Unknown, minValue: 0, maxValue: 1073741824, description: "The rights for this ACE."), |
31 | }, | 32 | }, |
32 | tupleDefinitionName: HttpTupleDefinitions.WixHttpUrlAce.Name, | ||
33 | tupleIdIsPrimaryKey: true | 33 | tupleIdIsPrimaryKey: true |
34 | ); | 34 | ); |
35 | 35 | ||