├── .gitignore ├── .travis.yml ├── CHANGELOG ├── LICENSE ├── README.md ├── Setup.hs ├── examples.hs ├── man ├── Makefile ├── man1 │ ├── pg_migrate.1 │ └── pg_migrate.1.markdown └── man5 │ ├── pg_migrate.5 │ └── pg_migrate.5.markdown ├── pg_migrate.hs ├── postgresql-orm.cabal ├── src ├── Data │ ├── GetField.hs │ └── RequireSelector.hs └── Database │ └── PostgreSQL │ ├── Describe.hs │ ├── Devel.hs │ ├── Escape.hs │ ├── Keywords.hs │ ├── Migrate.hs │ ├── Migrations.hs │ ├── ORM.hs │ └── ORM │ ├── .Validations.hs.swp │ ├── Association.hs │ ├── CreateTable.hs │ ├── DBSelect.hs │ ├── LIO │ ├── Model.hs │ └── Model_old.hs │ ├── Model.hs │ ├── SqlType.hs │ └── Validations.hs ├── stack.yaml └── static ├── CompilerUtils.hs └── migration.hs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alevy/postgresql-orm/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alevy/postgresql-orm/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alevy/postgresql-orm/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alevy/postgresql-orm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alevy/postgresql-orm/HEAD/README.md -------------------------------------------------------------------------------- /Setup.hs: -------------------------------------------------------------------------------- 1 | import Distribution.Simple 2 | main = defaultMain 3 | -------------------------------------------------------------------------------- /examples.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alevy/postgresql-orm/HEAD/examples.hs -------------------------------------------------------------------------------- /man/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alevy/postgresql-orm/HEAD/man/Makefile -------------------------------------------------------------------------------- /man/man1/pg_migrate.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alevy/postgresql-orm/HEAD/man/man1/pg_migrate.1 -------------------------------------------------------------------------------- /man/man1/pg_migrate.1.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alevy/postgresql-orm/HEAD/man/man1/pg_migrate.1.markdown -------------------------------------------------------------------------------- /man/man5/pg_migrate.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alevy/postgresql-orm/HEAD/man/man5/pg_migrate.5 -------------------------------------------------------------------------------- /man/man5/pg_migrate.5.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alevy/postgresql-orm/HEAD/man/man5/pg_migrate.5.markdown -------------------------------------------------------------------------------- /pg_migrate.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alevy/postgresql-orm/HEAD/pg_migrate.hs -------------------------------------------------------------------------------- /postgresql-orm.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alevy/postgresql-orm/HEAD/postgresql-orm.cabal -------------------------------------------------------------------------------- /src/Data/GetField.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alevy/postgresql-orm/HEAD/src/Data/GetField.hs -------------------------------------------------------------------------------- /src/Data/RequireSelector.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alevy/postgresql-orm/HEAD/src/Data/RequireSelector.hs -------------------------------------------------------------------------------- /src/Database/PostgreSQL/Describe.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alevy/postgresql-orm/HEAD/src/Database/PostgreSQL/Describe.hs -------------------------------------------------------------------------------- /src/Database/PostgreSQL/Devel.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alevy/postgresql-orm/HEAD/src/Database/PostgreSQL/Devel.hs -------------------------------------------------------------------------------- /src/Database/PostgreSQL/Escape.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alevy/postgresql-orm/HEAD/src/Database/PostgreSQL/Escape.hs -------------------------------------------------------------------------------- /src/Database/PostgreSQL/Keywords.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alevy/postgresql-orm/HEAD/src/Database/PostgreSQL/Keywords.hs -------------------------------------------------------------------------------- /src/Database/PostgreSQL/Migrate.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alevy/postgresql-orm/HEAD/src/Database/PostgreSQL/Migrate.hs -------------------------------------------------------------------------------- /src/Database/PostgreSQL/Migrations.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alevy/postgresql-orm/HEAD/src/Database/PostgreSQL/Migrations.hs -------------------------------------------------------------------------------- /src/Database/PostgreSQL/ORM.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alevy/postgresql-orm/HEAD/src/Database/PostgreSQL/ORM.hs -------------------------------------------------------------------------------- /src/Database/PostgreSQL/ORM/.Validations.hs.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alevy/postgresql-orm/HEAD/src/Database/PostgreSQL/ORM/.Validations.hs.swp -------------------------------------------------------------------------------- /src/Database/PostgreSQL/ORM/Association.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alevy/postgresql-orm/HEAD/src/Database/PostgreSQL/ORM/Association.hs -------------------------------------------------------------------------------- /src/Database/PostgreSQL/ORM/CreateTable.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alevy/postgresql-orm/HEAD/src/Database/PostgreSQL/ORM/CreateTable.hs -------------------------------------------------------------------------------- /src/Database/PostgreSQL/ORM/DBSelect.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alevy/postgresql-orm/HEAD/src/Database/PostgreSQL/ORM/DBSelect.hs -------------------------------------------------------------------------------- /src/Database/PostgreSQL/ORM/LIO/Model.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alevy/postgresql-orm/HEAD/src/Database/PostgreSQL/ORM/LIO/Model.hs -------------------------------------------------------------------------------- /src/Database/PostgreSQL/ORM/LIO/Model_old.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alevy/postgresql-orm/HEAD/src/Database/PostgreSQL/ORM/LIO/Model_old.hs -------------------------------------------------------------------------------- /src/Database/PostgreSQL/ORM/Model.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alevy/postgresql-orm/HEAD/src/Database/PostgreSQL/ORM/Model.hs -------------------------------------------------------------------------------- /src/Database/PostgreSQL/ORM/SqlType.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alevy/postgresql-orm/HEAD/src/Database/PostgreSQL/ORM/SqlType.hs -------------------------------------------------------------------------------- /src/Database/PostgreSQL/ORM/Validations.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alevy/postgresql-orm/HEAD/src/Database/PostgreSQL/ORM/Validations.hs -------------------------------------------------------------------------------- /stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alevy/postgresql-orm/HEAD/stack.yaml -------------------------------------------------------------------------------- /static/CompilerUtils.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alevy/postgresql-orm/HEAD/static/CompilerUtils.hs -------------------------------------------------------------------------------- /static/migration.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alevy/postgresql-orm/HEAD/static/migration.hs --------------------------------------------------------------------------------