aboutsummaryrefslogtreecommitdiff
path: root/src/wixext/HttpTableDefinitions.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/wixext/HttpTableDefinitions.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/wixext/HttpTableDefinitions.cs b/src/wixext/HttpTableDefinitions.cs
index 2ec26b63..0665ce8d 100644
--- a/src/wixext/HttpTableDefinitions.cs
+++ b/src/wixext/HttpTableDefinitions.cs
@@ -8,7 +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 HttpSymbolDefinitions.WixHttpUrlReservation,
12 new[] 12 new[]
13 { 13 {
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), 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),
@@ -17,12 +17,12 @@ namespace WixToolset.Http
17 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),
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 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),
19 }, 19 },
20 tupleIdIsPrimaryKey: true 20 symbolIdIsPrimaryKey: 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 HttpSymbolDefinitions.WixHttpUrlAce,
26 new[] 26 new[]
27 { 27 {
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), 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),
@@ -30,7 +30,7 @@ namespace WixToolset.Http
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("SecurityPrincipal", ColumnType.String, 0, primaryKey: false, nullable: false, ColumnCategory.Formatted, description: "The security principal for this ACE.", modularizeType: ColumnModularizeType.Property),
31 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."),
32 }, 32 },
33 tupleIdIsPrimaryKey: true 33 symbolIdIsPrimaryKey: true
34 ); 34 );
35 35
36 public static readonly TableDefinition[] All = new[] 36 public static readonly TableDefinition[] All = new[]