diff options
author | fyodorkor <fyodorkor@gmail.com> | 2023-02-04 22:40:04 +0200 |
---|---|---|
committer | Bob Arnson <github@bobs.org> | 2023-02-04 18:04:23 -0500 |
commit | e710738a6285f4225ded26c88b07dfa460ed66b4 (patch) | |
tree | c5b2dc8fd8d0c41edfd6b15509f2d25537fb9003 /src/ext/Util/wixext/UtilTableDefinitions.cs | |
parent | 77b1f6715534192ab143dd9109aacc50fc78e52a (diff) | |
download | wix-e710738a6285f4225ded26c88b07dfa460ed66b4.tar.gz wix-e710738a6285f4225ded26c88b07dfa460ed66b4.tar.bz2 wix-e710738a6285f4225ded26c88b07dfa460ed66b4.zip |
Add keyColumn definition to _User of Wix4FileSharePermissions
Diffstat (limited to '')
-rw-r--r-- | src/ext/Util/wixext/UtilTableDefinitions.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ext/Util/wixext/UtilTableDefinitions.cs b/src/ext/Util/wixext/UtilTableDefinitions.cs index a8377f14..baa1d25b 100644 --- a/src/ext/Util/wixext/UtilTableDefinitions.cs +++ b/src/ext/Util/wixext/UtilTableDefinitions.cs | |||
@@ -86,7 +86,7 @@ namespace WixToolset.Util | |||
86 | new[] | 86 | new[] |
87 | { | 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), | 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"), | 90 | new ColumnDefinition("Permissions", ColumnType.Number, 4, primaryKey: false, nullable: false, ColumnCategory.Unknown, description: "Permissions int, as in EXPLICIT_ACCESS.grfAccessPermissions in MSDN"), |
91 | }, | 91 | }, |
92 | symbolIdIsPrimaryKey: false | 92 | symbolIdIsPrimaryKey: false |