Add keyColumn definition to _User of Wix4FileSharePermissions
fyodorkor committed
Feb 4, 2023 at 22:40 UTC
e710738a6285f4225ded26c88b07dfa460ed66b4
1 file changed
+1
-1
src/ext/Util/wixext/UtilTableDefinitions.cs
+1
-1
@@ -86,7 +86,7 @@ namespace WixToolset.Util
86
new[]
87
{
88
new ColumnDefinition("FileShare_", ColumnType.String, 72, primaryKey: true, nullable: false, ColumnCategory.Identifier, keyTable: "Wix4FileShare", keyColumn: 1, description: "FileShare that these premissions are to be applied to.", modularizeType: ColumnModularizeType.Column),
89
- new ColumnDefinition("User_", ColumnType.String, 72, primaryKey: true, nullable: false, ColumnCategory.Identifier, keyTable: "Wix4User", description: "User that these premissions are to apply to.", modularizeType: ColumnModularizeType.Column),
89
+ new ColumnDefinition("User_", ColumnType.String, 72, primaryKey: true, nullable: false, ColumnCategory.Identifier, keyTable: "Wix4User", keyColumn: 1, description: "User that these premissions are to apply to.", modularizeType: ColumnModularizeType.Column),
90
new ColumnDefinition("Permissions", ColumnType.Number, 4, primaryKey: false, nullable: false, ColumnCategory.Unknown, description: "Permissions int, as in EXPLICIT_ACCESS.grfAccessPermissions in MSDN"),
91
},
92
symbolIdIsPrimaryKey: false