File: Internal.hs

package info (click to toggle)
haskell-persistent 2.17.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,196 kB
  • sloc: haskell: 14,076; makefile: 3
file content (19 lines) | stat: -rw-r--r-- 581 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
-- | The 'EntityDef' type, fields, and constructor are exported from this
-- module. Breaking changes to the 'EntityDef' type are not reflected in
-- the major version of the API. Please import from
-- "Database.Persist.EntityDef" instead.
--
-- If you need this module, please file a GitHub issue why.
--
-- @since 2.13.0.0
module Database.Persist.EntityDef.Internal
    ( EntityDef(..)
    , entityPrimary
    , entitiesPrimary
    , keyAndEntityFields
    , keyAndEntityFieldsDatabase
    , toEmbedEntityDef
    , EntityIdDef(..)
    ) where

import Database.Persist.Types.Base