17
17
{-# LANGUAGE DeriveTraversable #-}
18
18
{-# LANGUAGE LambdaCase #-}
19
19
{-# LANGUAGE OverloadedStrings #-}
20
+ {-# LANGUAGE NamedFieldPuns #-}
20
21
21
22
module Database.PostgreSQL.Simple.Migration
22
23
(
@@ -142,8 +143,10 @@ executeMigration con verbose name contents = do
142
143
void $ execute con q (name, checksum)
143
144
when verbose $ putStrLn $ " Execute:\t " ++ name
144
145
return MigrationSuccess
145
- ScriptModified _ -> do
146
- when verbose $ putStrLn $ " Fail:\t " ++ name
146
+ ScriptModified { actual, expected } -> do
147
+ when verbose $ putStrLn
148
+ $ " Fail:\t " ++ name
149
+ ++ " \n " ++ scriptModifiedErrorMessage expected actual
147
150
return (MigrationError name)
148
151
where
149
152
q = " insert into schema_migrations(filename, checksum) values(?, ?)"
@@ -197,8 +200,10 @@ executeValidation con verbose cmd = case cmd of
197
200
ScriptNotExecuted -> do
198
201
when verbose $ putStrLn $ " Missing:\t " ++ name
199
202
return (MigrationError $ " Missing: " ++ name)
200
- ScriptModified _ -> do
201
- when verbose $ putStrLn $ " Checksum mismatch:\t " ++ name
203
+ ScriptModified { expected, actual } -> do
204
+ when verbose $ putStrLn
205
+ $ " Checksum mismatch:\t " ++ name
206
+ ++ " \n " ++ scriptModifiedErrorMessage expected actual
202
207
return (MigrationError $ " Checksum mismatch: " ++ name)
203
208
204
209
goScripts path xs = sequenceMigrations (goScript path <$> xs)
@@ -210,14 +215,17 @@ executeValidation con verbose cmd = case cmd of
210
215
-- If there is no matching script entry in the database, the script
211
216
-- will be executed and its meta-information will be recorded.
212
217
checkScript :: Connection -> ScriptName -> Checksum -> IO CheckScriptResult
213
- checkScript con name checksum =
218
+ checkScript con name fileChecksum =
214
219
query con q (Only name) >>= \ case
215
220
[] ->
216
221
return ScriptNotExecuted
217
- Only actualChecksum : _ | checksum == actualChecksum ->
222
+ Only dbChecksum : _ | fileChecksum == dbChecksum ->
218
223
return ScriptOk
219
- Only actualChecksum: _ ->
220
- return (ScriptModified actualChecksum)
224
+ Only dbChecksum: _ ->
225
+ return (ScriptModified {
226
+ expected = dbChecksum,
227
+ actual = fileChecksum
228
+ })
221
229
where
222
230
q = mconcat
223
231
[ " select checksum from schema_migrations "
@@ -272,13 +280,17 @@ data CheckScriptResult
272
280
= ScriptOk
273
281
-- ^ The script has already been executed and the checksums match.
274
282
-- This is good.
275
- | ScriptModified Checksum
283
+ | ScriptModified { expected :: Checksum , actual :: Checksum }
276
284
-- ^ The script has already been executed and there is a checksum
277
285
-- mismatch. This is bad.
278
286
| ScriptNotExecuted
279
287
-- ^ The script has not been executed, yet. This is good.
280
288
deriving (Show , Eq , Read , Ord )
281
289
290
+ scriptModifiedErrorMessage :: Checksum -> Checksum -> [Char ]
291
+ scriptModifiedErrorMessage expected actual =
292
+ " expected: " ++ show expected ++ " \n hash was: " ++ show actual
293
+
282
294
-- | A sum-type denoting the result of a migration.
283
295
data MigrationResult a
284
296
= MigrationError a
0 commit comments