diff --git a/changelog.md b/changelog.md
--- a/changelog.md
+++ b/changelog.md
@@ -1,3 +1,9 @@
+3.5.4.1
+=======
+- @parsonsmatt
+    - [#312](https://github.com/bitemyapp/esqueleto/pull/312/)
+        - Support `persistent-2.14.0.0`
+
 3.5.4.0
 =======
 - @parsonsmatt
diff --git a/esqueleto.cabal b/esqueleto.cabal
--- a/esqueleto.cabal
+++ b/esqueleto.cabal
@@ -1,7 +1,7 @@
 cabal-version: 1.12
 
 name:           esqueleto
-version:        3.5.4.0
+version:        3.5.4.1
 synopsis:       Type-safe EDSL for SQL queries on persistent backends.
 description:    @esqueleto@ is a bare bones, type-safe EDSL for SQL queries that works with unmodified @persistent@ SQL backends.  Its language closely resembles SQL, so you don't have to learn new concepts, just new syntax, and it's fairly easy to predict the generated SQL and optimize it for your backend. Most kinds of errors committed when writing SQL are caught as compile-time errors---although it is possible to write type-checked @esqueleto@ queries that fail at runtime.
                 .
diff --git a/src/Database/Esqueleto/Internal/PersistentImport.hs b/src/Database/Esqueleto/Internal/PersistentImport.hs
--- a/src/Database/Esqueleto/Internal/PersistentImport.hs
+++ b/src/Database/Esqueleto/Internal/PersistentImport.hs
@@ -1,3 +1,5 @@
+{-# language CPP #-}
+
 -- | Re-export "Database.Persist.Sql" without any clashes with
 -- @esqueleto@.
 module Database.Esqueleto.Internal.PersistentImport
@@ -70,13 +72,16 @@
     , keyAndEntityFields
     , PersistStore
     , PersistUnique
-    , DeleteCascade(..)
     , PersistConfig(..)
     , BackendSpecificUpdate
     , Entity(..)
     , PersistEntity(..)
     , PersistField(..)
+#if MIN_VERSION_persistent(2,14,0)
+#else
+    , DeleteCascade(..)
     , SomePersistField(..)
+#endif
     , PersistQueryRead(..)
     , PersistQueryWrite(..)
     , BackendCompatible(..)
diff --git a/test/Common/Test.hs b/test/Common/Test.hs
--- a/test/Common/Test.hs
+++ b/test/Common/Test.hs
@@ -87,6 +87,7 @@
 import qualified Database.Esqueleto.Internal.ExprParser as P
 import qualified Database.Esqueleto.Internal.Internal as EI
 import qualified UnliftIO.Resource as R
+import Database.Persist.Class.PersistEntity
 
 import Common.Test.Select
 
@@ -2357,6 +2358,9 @@
            , BaseBackend backend ~ PersistEntityBackend val
            , PersistStore backend
            , MonadIO m
+#if MIN_VERSION_persistent(2,14,0)
+           , SafeToInsert val
+#endif
            , PersistEntity val )
         => val -> ReaderT backend m (Entity val)
 insert' v = flip Entity v <$> insert v
