You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: wizard-server/src/Wizard/Database/Migration/Production/Migration_0053_qtnEventsRefactoring/Migration.hs
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,7 @@ migrate dbPool = do
21
21
testEventCount dbPool
22
22
testValueCount dbPool
23
23
removeEventsColumnFromQuestionnaire dbPool
24
+
changePasswordHashForSystemUser dbPool
24
25
createExternalLinkTable dbPool
25
26
26
27
regenerateQuestionnaireEventUuid dbPool =do
@@ -322,6 +323,12 @@ removeEventsColumnFromQuestionnaire dbPool = do
322
323
liftIO $ withResource dbPool action
323
324
returnNothing
324
325
326
+
changePasswordHashForSystemUser dbPool =do
327
+
let sql ="UPDATE user_entity SET password_hash = 'no-hash' WHERE uuid = '00000000-0000-0000-0000-000000000000' AND tenant_uuid = '00000000-0000-0000-0000-000000000000';"
0 commit comments