packages feed

rds-data 0.0.0.1 → 0.0.0.2

raw patch · 2 files changed

+5/−5 lines, 2 files

Files

polysemy/Data/RdsData/Polysemy/Migration.hs view
@@ -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 
rds-data.cabal view
@@ -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