name: postgresql-orm version: 0.2 cabal-version: >= 1.14 build-type: Simple license: GPL license-file: LICENSE author: Amit Levy and David Mazieres maintainer: amit@amitlevy.com category: Database synopsis: An ORM (Object Relational Mapping) and migrations DSL for PostgreSQL. data-files: man/man1/pg_migrate.1 man/man5/pg_migrate.5 static/migration.hs description: An ORM (Object Relational Mapping) and migrations DSL for PostgreSQL. See "Database.PostgreSQL.ORM" for documentation. executable pg_migrate default-language: Haskell2010 Main-is: pg_migrate.hs ghc-options: -Wall build-depends: base < 6 , blaze-builder , bytestring , directory , filepath , ghc-prim , mtl , old-locale , postgresql-simple , process , time library default-language: Haskell2010 build-depends: base < 6 , aeson , blaze-builder , bytestring , directory , filepath , ghc-prim , mtl , old-locale , postgresql-simple , process , text , time , transformers , unix , vector ghc-options: -Wall -fno-warn-unused-do-bind exposed-modules: Data.GetField , Data.RequireSelector , Database.PostgreSQL.Devel , Database.PostgreSQL.Describe , Database.PostgreSQL.Escape , Database.PostgreSQL.Migrate , Database.PostgreSQL.Migrations , Database.PostgreSQL.ORM , Database.PostgreSQL.ORM.Association , Database.PostgreSQL.ORM.CreateTable , Database.PostgreSQL.ORM.DBSelect , Database.PostgreSQL.ORM.Model , Database.PostgreSQL.ORM.SqlType , Database.PostgreSQL.ORM.Validations other-extensions: FlexibleContexts , FlexibleInstances , FunctionalDependencies , MultiParamTypeClasses , OverlappingInstances , OverloadedStrings , ScopedTypeVariables , TypeOperators , UndecidableInstances