diff --git a/Database/Groundhog/MySQL.hs b/Database/Groundhog/MySQL.hs
--- a/Database/Groundhog/MySQL.hs
+++ b/Database/Groundhog/MySQL.hs
@@ -64,13 +64,15 @@
   insertBy u v = H.insertBy escapeS queryRawTyped' True u v
   insertByAll v = H.insertByAll escapeS queryRawTyped' True v
   replace k v = H.replace escapeS queryRawTyped' executeRaw' insertIntoConstructorTable k v
+  replaceBy k v = H.replaceBy escapeS executeRaw' k v
   select options = H.select escapeS queryRawTyped' noLimit renderCond' options
   selectAll = H.selectAll escapeS queryRawTyped'
   get k = H.get escapeS queryRawTyped' k
   getBy k = H.getBy escapeS queryRawTyped' k
   update upds cond = H.update escapeS executeRaw' renderCond' upds cond
   delete cond = H.delete escapeS executeRaw' renderCond' cond
-  deleteByKey k = H.deleteByKey escapeS executeRaw' k
+  deleteBy k = H.deleteBy escapeS executeRaw' k
+  deleteAll v = H.deleteAll escapeS executeRaw' v
   count cond = H.count escapeS queryRawTyped' renderCond' cond
   countAll fakeV = H.countAll escapeS queryRawTyped' fakeV
   project p options = H.project escapeS queryRawTyped' noLimit renderCond' p options
diff --git a/groundhog-mysql.cabal b/groundhog-mysql.cabal
--- a/groundhog-mysql.cabal
+++ b/groundhog-mysql.cabal
@@ -1,5 +1,5 @@
 name:            groundhog-mysql
-version:         0.4.0.3
+version:         0.4.1
 license:         BSD3
 license-file:    LICENSE
 author:          Boris Lykah <lykahb@gmail.com>
@@ -17,7 +17,7 @@
                    , mysql                   >= 0.1.1.3   && < 0.2
                    , bytestring              >= 0.9
                    , transformers            >= 0.2.1
-                   , groundhog               >= 0.4.0.3   && < 0.5.0
+                   , groundhog               >= 0.4.1     && < 0.5.0
                    , monad-control           >= 0.3
                    , monad-logger            >= 0.3
                    , containers              >= 0.2
