diff --git a/Database/Groundhog/Sqlite.hs b/Database/Groundhog/Sqlite.hs
--- a/Database/Groundhog/Sqlite.hs
+++ b/Database/Groundhog/Sqlite.hs
@@ -299,16 +299,17 @@
   DbOther (OtherTypeDef ts) -> concatMap (either id showSqlType) ts
 
 readSqlType :: String -> DbTypePrimitive
-readSqlType "VARCHAR" = DbString
-readSqlType "INTEGER" = DbInt64
-readSqlType "REAL" = DbReal
-readSqlType "BOOLEAN" = DbBool
-readSqlType "DATE" = DbDay
-readSqlType "TIME" = DbTime
-readSqlType "TIMESTAMP" = DbDayTime
-readSqlType "TIMESTAMP WITH TIME ZONE" = DbDayTimeZoned
-readSqlType "BLOB" = DbBlob
-readSqlType typ = DbOther $ OtherTypeDef [Left typ]
+readSqlType typ = case map toUpper typ of
+  "VARCHAR" -> DbString
+  "INTEGER" -> DbInt64
+  "REAL" -> DbReal
+  "BOOLEAN" -> DbBool
+  "DATE" -> DbDay
+  "TIME" -> DbTime
+  "TIMESTAMP" -> DbDayTime
+  "TIMESTAMP WITH TIME ZONE" -> DbDayTimeZoned
+  "BLOB" -> DbBlob
+  _ -> DbOther $ OtherTypeDef [Left typ]
 
 data Affinity = TEXT | NUMERIC | INTEGER | REAL | NONE deriving (Eq, Show)
 
diff --git a/changelog b/changelog
--- a/changelog
+++ b/changelog
@@ -1,3 +1,6 @@
+0.7.0.1
+* Support for monad-control 1.0
+
 0.7.0
 * Bump with groundhog
 
diff --git a/groundhog-sqlite.cabal b/groundhog-sqlite.cabal
--- a/groundhog-sqlite.cabal
+++ b/groundhog-sqlite.cabal
@@ -1,5 +1,5 @@
 name:            groundhog-sqlite
-version:         0.7.0
+version:         0.7.0.1
 license:         BSD3
 license-file:    LICENSE
 author:          Boris Lykah <lykahb@gmail.com>
@@ -19,7 +19,7 @@
                    , bytestring               >= 0.9
                    , transformers             >= 0.2.1
                    , groundhog                >= 0.7       && < 0.8
-                   , monad-control            >= 0.3       && < 0.4
+                   , monad-control            >= 0.3       && < 1.1
                    , monad-logger             >= 0.3       && < 0.4
                    , containers               >= 0.2
                    , text                     >= 0.8
