Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions persistent/Database/Persist/Quasi.hs
Original file line number Diff line number Diff line change
Expand Up @@ -649,11 +649,11 @@
-- derivePersistField "Employment"
-- @
--
-- @derivePersistField@ stores sum type values as strins in the database. While not as efficient as using integers, this approach simplifies adding and removing values from your enumeration.
-- @derivePersistField@ stores sum type values as strings in the database. While not as efficient as using integers, this approach simplifies adding and removing values from your enumeration.
--
-- Due to the GHC Stage Restriction, the call to the Template Haskell function @derivePersistField@ must be in a separate module than where the generated code is used.
--
-- Note: If you created a new module, make sure add it to the @exposed-modules@ section of your Cabal file.
-- Note: If you created a new module, make sure to add it to the @exposed-modules@ section of your Cabal file.
--
-- Use the module by importing it into your @Model.hs@ file:
--
Expand Down