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
@@ -16,6 +16,7 @@
 import Database.Persist.Postgresql
 import Database.Postgres.Temp as Temp
 import Test.Syd
+import Test.Syd.Persistent
 
 -- | Declare a test suite that uses a database connection.
 --
@@ -62,14 +63,6 @@
     Left err -> liftIO $ expectationFailure $ show err
     Right r -> pure r
 
-#if MIN_VERSION_persistent(2,10,2)
-migrationRunner :: MonadIO m => Migration -> ReaderT SqlBackend m ()
-migrationRunner = void . runMigrationQuiet
-#else
-migrationRunner :: MonadIO m => Migration -> ReaderT SqlBackend m ()
-migrationRunner = runMigration
-#endif
-
 -- | A flipped version of 'runSqlPool' to run your tests
-runPostgresqlTest :: ConnectionPool -> SqlPersistT IO a -> IO a
-runPostgresqlTest = flip runSqlPool
+runPostgresqlTest :: ConnectionPool -> SqlPersistM a -> IO a
+runPostgresqlTest = runPersistentTest
diff --git a/sydtest-persistent-postgresql.cabal b/sydtest-persistent-postgresql.cabal
--- a/sydtest-persistent-postgresql.cabal
+++ b/sydtest-persistent-postgresql.cabal
@@ -5,7 +5,7 @@
 -- see: https://github.com/sol/hpack
 
 name:           sydtest-persistent-postgresql
-version:        0.1.0.0
+version:        0.2.0.0
 synopsis:       An persistent-postgresql companion library for sydtest
 category:       Testing
 homepage:       https://github.com/NorfairKing/sydtest#readme
@@ -40,6 +40,7 @@
     , persistent
     , persistent-postgresql
     , sydtest
+    , sydtest-persistent
     , tmp-postgres
   default-language: Haskell2010
 
