diff options
Diffstat (limited to 'src/wixext/MsmqTableDefinitions.cs')
-rw-r--r-- | src/wixext/MsmqTableDefinitions.cs | 12 |
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[] |