aboutsummaryrefslogtreecommitdiff
path: root/src/wixext/MsmqTableDefinitions.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2020-06-27 14:53:33 -0700
committerRob Mensching <rob@firegiant.com>2020-06-27 14:57:46 -0700
commita89592813ea0400675c56d825fdd67f3cc4a8aaa (patch)
treea86bfc1ed4e0b2ced87a20f8992b286e70f855fc /src/wixext/MsmqTableDefinitions.cs
parent3271bb37b4320b293881808be63142f912b85266 (diff)
downloadwix-a89592813ea0400675c56d825fdd67f3cc4a8aaa.tar.gz
wix-a89592813ea0400675c56d825fdd67f3cc4a8aaa.tar.bz2
wix-a89592813ea0400675c56d825fdd67f3cc4a8aaa.zip
The Great Tuple to Symbol Rename (tm)
Diffstat (limited to 'src/wixext/MsmqTableDefinitions.cs')
-rw-r--r--src/wixext/MsmqTableDefinitions.cs12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/wixext/MsmqTableDefinitions.cs b/src/wixext/MsmqTableDefinitions.cs
index 30e8d2da..46e2dd10 100644
--- a/src/wixext/MsmqTableDefinitions.cs
+++ b/src/wixext/MsmqTableDefinitions.cs
@@ -8,7 +8,7 @@ namespace WixToolset.Msmq
8 { 8 {
9 public static readonly TableDefinition MessageQueue = new TableDefinition( 9 public static readonly TableDefinition MessageQueue = new TableDefinition(
10 "MessageQueue", 10 "MessageQueue",
11 MsmqTupleDefinitions.MessageQueue, 11 MsmqSymbolDefinitions.MessageQueue,
12 new[] 12 new[]
13 { 13 {
14 new ColumnDefinition("MessageQueue", ColumnType.String, 72, primaryKey: true, nullable: false, ColumnCategory.Identifier, modularizeType: ColumnModularizeType.Column), 14 new ColumnDefinition("MessageQueue", ColumnType.String, 72, primaryKey: true, nullable: false, ColumnCategory.Identifier, modularizeType: ColumnModularizeType.Column),
@@ -23,12 +23,12 @@ namespace WixToolset.Msmq
23 new ColumnDefinition("ServiceTypeGuid", ColumnType.String, 72, primaryKey: false, nullable: true, ColumnCategory.Formatted, modularizeType: ColumnModularizeType.Property), 23 new ColumnDefinition("ServiceTypeGuid", ColumnType.String, 72, primaryKey: false, nullable: true, ColumnCategory.Formatted, modularizeType: ColumnModularizeType.Property),
24 new ColumnDefinition("Attributes", ColumnType.Number, 4, primaryKey: false, nullable: false, ColumnCategory.Unknown), 24 new ColumnDefinition("Attributes", ColumnType.Number, 4, primaryKey: false, nullable: false, ColumnCategory.Unknown),
25 }, 25 },
26 tupleIdIsPrimaryKey: true 26 symbolIdIsPrimaryKey: true
27 ); 27 );
28 28
29 public static readonly TableDefinition MessageQueueUserPermission = new TableDefinition( 29 public static readonly TableDefinition MessageQueueUserPermission = new TableDefinition(
30 "MessageQueueUserPermission", 30 "MessageQueueUserPermission",
31 MsmqTupleDefinitions.MessageQueueUserPermission, 31 MsmqSymbolDefinitions.MessageQueueUserPermission,
32 new[] 32 new[]
33 { 33 {
34 new ColumnDefinition("MessageQueueUserPermission", ColumnType.String, 72, primaryKey: true, nullable: false, ColumnCategory.Identifier, modularizeType: ColumnModularizeType.Column), 34 new ColumnDefinition("MessageQueueUserPermission", ColumnType.String, 72, primaryKey: true, nullable: false, ColumnCategory.Identifier, modularizeType: ColumnModularizeType.Column),
@@ -37,12 +37,12 @@ namespace WixToolset.Msmq
37 new ColumnDefinition("User_", ColumnType.String, 72, primaryKey: false, nullable: false, ColumnCategory.Identifier, modularizeType: ColumnModularizeType.Column), 37 new ColumnDefinition("User_", ColumnType.String, 72, primaryKey: false, nullable: false, ColumnCategory.Identifier, modularizeType: ColumnModularizeType.Column),
38 new ColumnDefinition("Permissions", ColumnType.Number, 4, primaryKey: false, nullable: false, ColumnCategory.Unknown), 38 new ColumnDefinition("Permissions", ColumnType.Number, 4, primaryKey: false, nullable: false, ColumnCategory.Unknown),
39 }, 39 },
40 tupleIdIsPrimaryKey: true 40 symbolIdIsPrimaryKey: true
41 ); 41 );
42 42
43 public static readonly TableDefinition MessageQueueGroupPermission = new TableDefinition( 43 public static readonly TableDefinition MessageQueueGroupPermission = new TableDefinition(
44 "MessageQueueGroupPermission", 44 "MessageQueueGroupPermission",
45 MsmqTupleDefinitions.MessageQueueGroupPermission, 45 MsmqSymbolDefinitions.MessageQueueGroupPermission,
46 new[] 46 new[]
47 { 47 {
48 new ColumnDefinition("MessageQueueGroupPermission", ColumnType.String, 72, primaryKey: true, nullable: false, ColumnCategory.Identifier, modularizeType: ColumnModularizeType.Column), 48 new ColumnDefinition("MessageQueueGroupPermission", ColumnType.String, 72, primaryKey: true, nullable: false, ColumnCategory.Identifier, modularizeType: ColumnModularizeType.Column),
@@ -51,7 +51,7 @@ namespace WixToolset.Msmq
51 new ColumnDefinition("Group_", ColumnType.String, 72, primaryKey: false, nullable: false, ColumnCategory.Identifier, modularizeType: ColumnModularizeType.Column), 51 new ColumnDefinition("Group_", ColumnType.String, 72, primaryKey: false, nullable: false, ColumnCategory.Identifier, modularizeType: ColumnModularizeType.Column),
52 new ColumnDefinition("Permissions", ColumnType.Number, 4, primaryKey: false, nullable: false, ColumnCategory.Unknown), 52 new ColumnDefinition("Permissions", ColumnType.Number, 4, primaryKey: false, nullable: false, ColumnCategory.Unknown),
53 }, 53 },
54 tupleIdIsPrimaryKey: true 54 symbolIdIsPrimaryKey: true
55 ); 55 );
56 56
57 public static readonly TableDefinition[] All = new[] 57 public static readonly TableDefinition[] All = new[]