diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,11 @@
 # Changelog
 
+## [0.2.0.2] - 2022-05-05
+
+### Added
+
+* `postgresqlMigrationSucceedsSpec`
+
 ## [0.2.0.1] - 2022-04-26
 
 ### Added
diff --git a/src/Test/Syd/Persistent/Postgresql.hs b/src/Test/Syd/Persistent/Postgresql.hs
--- a/src/Test/Syd/Persistent/Postgresql.hs
+++ b/src/Test/Syd/Persistent/Postgresql.hs
@@ -8,6 +8,7 @@
     connectionPoolSetupFunc,
     runSqlPool,
     runPostgresqlTest,
+    postgresqlMigrationSucceedsSpec,
   )
 where
 
@@ -66,3 +67,9 @@
 -- | A flipped version of 'runSqlPool' to run your tests
 runPostgresqlTest :: ConnectionPool -> SqlPersistM a -> IO a
 runPostgresqlTest = runPersistentTest
+
+-- | Test that the given migration succeeds, when applied to the current database.
+--
+-- See 'Test.Syd.Persistent.migrationsSucceedsSpec" for details.
+postgresqlMigrationSucceedsSpec :: FilePath -> Migration -> Spec
+postgresqlMigrationSucceedsSpec = migrationsSucceedsSpecHelper connectionPoolSetupFunc
diff --git a/sydtest-persistent-postgresql.cabal b/sydtest-persistent-postgresql.cabal
--- a/sydtest-persistent-postgresql.cabal
+++ b/sydtest-persistent-postgresql.cabal
@@ -5,14 +5,14 @@
 -- see: https://github.com/sol/hpack
 
 name:           sydtest-persistent-postgresql
-version:        0.2.0.1
+version:        0.2.0.2
 synopsis:       An persistent-postgresql companion library for sydtest
 category:       Testing
 homepage:       https://github.com/NorfairKing/sydtest#readme
 bug-reports:    https://github.com/NorfairKing/sydtest/issues
 author:         Tom Sydney Kerckhove
 maintainer:     syd@cs-syd.eu
-copyright:      Copyright (c) 2021 Tom Sydney Kerckhove
+copyright:      Copyright (c) 2021-2022 Tom Sydney Kerckhove
 license:        OtherLicense
 license-file:   LICENSE.md
 build-type:     Simple
diff --git a/test/Test/Syd/Persistent/PostgresqlSpec.hs b/test/Test/Syd/Persistent/PostgresqlSpec.hs
--- a/test/Test/Syd/Persistent/PostgresqlSpec.hs
+++ b/test/Test/Syd/Persistent/PostgresqlSpec.hs
@@ -9,6 +9,8 @@
 spec :: Spec
 spec =
   describe "persistPostgresqlSpec" $ do
+    postgresqlMigrationSucceedsSpec "test_resources/migration.sql" migrateExample
+
     persistPostgresqlSpec migrateExample $ do
       it "can write and read this example person" $ \pool ->
         runPostgresqlTest pool $ do
