diff options
| author | Rob Mensching <rob@firegiant.com> | 2020-06-27 14:34:27 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2020-06-27 14:43:36 -0700 |
| commit | f8c8adbe2c753ce6448369c49e87f9ff937af344 (patch) | |
| tree | ecbf7bd56c84d030b71df009c66d04adf8480a84 /src/wixext/HttpTableDefinitions.cs | |
| parent | 836cb478b674e866e1430c03afb9651e85b48f2a (diff) | |
| download | wix-f8c8adbe2c753ce6448369c49e87f9ff937af344.tar.gz wix-f8c8adbe2c753ce6448369c49e87f9ff937af344.tar.bz2 wix-f8c8adbe2c753ce6448369c49e87f9ff937af344.zip | |
The Great Tuple to Symbol Rename (tm)
Diffstat (limited to 'src/wixext/HttpTableDefinitions.cs')
| -rw-r--r-- | src/wixext/HttpTableDefinitions.cs | 8 |
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[] |
