diff --git a/yesod-examples.cabal b/yesod-examples.cabal
--- a/yesod-examples.cabal
+++ b/yesod-examples.cabal
@@ -1,5 +1,5 @@
 Name:                yesod-examples
-Version:             0.6.0
+Version:             0.6.0.1
 Synopsis:            Example programs using the Yesod Web Framework.
 Description:         These are the same examples and tutorials found on the documentation site.
 Homepage:            http://docs.yesodweb.com/
@@ -51,6 +51,7 @@
   Build-depends:       time,
                        persistent >= 0.3 && < 0.4
   hs-source-dirs:      yesod/tutorial
+  other-modules:       MkToForm
 
 Executable persistent-synopsis
   Main-is:             synopsis/persistent.lhs
diff --git a/yesod/tutorial/MkToForm.hs b/yesod/tutorial/MkToForm.hs
new file mode 100644
--- /dev/null
+++ b/yesod/tutorial/MkToForm.hs
@@ -0,0 +1,15 @@
+{-# LANGUAGE TypeFamilies, QuasiQuotes, GeneralizedNewtypeDeriving #-}
+{-# LANGUAGE FlexibleInstances #-}
+{-# LANGUAGE MultiParamTypeClasses #-}
+module MkToForm where
+
+import Yesod
+import Data.Time (Day)
+
+mkPersist [$persist|
+Entry
+    title String
+    day Day Desc toFormField=YesodJquery.jqueryDayField'
+    content Html toFormField=YesodNic.nicHtmlField
+    deriving
+|]
