Changeset 132 for trunk/Modules/User/UModuleUser.pas
- Timestamp:
- Mar 18, 2022, 3:47:27 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/User/UModuleUser.pas
r108 r132 6 6 7 7 uses 8 Classes, SysUtils, UModularSystem, SpecializedDictionary, UUser, 9 UModuleBase, UWebPage; 8 Classes, SysUtils, UModularSystem, UUser, UModuleBase, UWebPage; 10 9 11 10 type … … 83 82 var 84 83 DbRows: TDbRows; 85 Data: TDictionaryStringString;86 84 begin 87 85 try 88 86 DbRows := TDbRows.Create; 89 Data := TDictionaryStringString.Create;90 87 91 88 Core.CommonDatabase.Query(DbRows, … … 171 168 ' ADD CONSTRAINT `PermissionUserAssignment_ibfk_2` FOREIGN KEY (`AssignedGroup`) REFERENCES `permissiongroup` (`Id`),' + 172 169 ' ADD CONSTRAINT `PermissionUserAssignment_ibfk_3` FOREIGN KEY (`AssignedOperation`) REFERENCES `permissionoperation` (`Id`);'); 173 174 175 170 finally 176 Data.Free;177 171 DbRows.Free; 178 172 end; 179 inherited Install;173 inherited; 180 174 end; 181 175 … … 184 178 DbRows: TDbRows; 185 179 begin 186 inherited Uninstall;180 inherited; 187 181 try 188 182 DbRows := TDbRows.Create;
Note:
See TracChangeset
for help on using the changeset viewer.