diff --git a/polysemy/Data/RdsData/Polysemy/Migration.hs b/polysemy/Data/RdsData/Polysemy/Migration.hs
--- a/polysemy/Data/RdsData/Polysemy/Migration.hs
+++ b/polysemy/Data/RdsData/Polysemy/Migration.hs
@@ -37,8 +37,8 @@
   => Member Resource r
   => FilePath
   -> Sem r ()
-migrateDown _migrationFp = do
-  value :: Migration <- readYamlFile "db/migration.yaml"
+migrateDown migrationFp = do
+  value :: Migration <- readYamlFile migrationFp
 
   let statements = value ^.. the @"plan" . to reverse . each . the @"down" . each
 
@@ -62,8 +62,8 @@
   => Member Resource r
   => FilePath
   -> Sem r ()
-migrateUp _migrationFp = do
-  value :: Migration <- readYamlFile "db/migration.yaml"
+migrateUp migrationFp = do
+  value :: Migration <- readYamlFile migrationFp
 
   let statements = value ^.. the @"plan" . each . the @"up" . each
 
diff --git a/rds-data.cabal b/rds-data.cabal
--- a/rds-data.cabal
+++ b/rds-data.cabal
@@ -1,7 +1,7 @@
 cabal-version: 3.6
 
 name:                   rds-data
-version:                0.0.0.1
+version:                0.0.0.2
 synopsis:               Codecs for use with AWS rds-data
 description:            Codecs for use with AWS rds-data.
 category:               Data
