drifter 0.1.0.0 → 0.1.0.1
raw patch · 2 files changed
+4/−4 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- drifter.cabal +1/−1
- src/Drifter/PostgreSQL.hs +3/−3
drifter.cabal view
@@ -1,6 +1,6 @@ name: drifter-version: 0.1.0.0+version: 0.1.0.1 synopsis: Simple schema management for arbitrary databases. description: Simple support for migrating database schemas, which allows haskell functions to be run as a part of the migration.
src/Drifter/PostgreSQL.hs view
@@ -70,10 +70,10 @@ CREATE SCHEMA IF NOT EXISTS drifter; CREATE TABLE IF NOT EXISTS drifter.changelog (- id serial NOT NULL,- name text NOT NULL,+ id serial NOT NULL,+ name text NOT NULL, description text,- time timestamp with time zone NOT NULL,+ time timestamp NOT NULL, PRIMARY KEY (id), UNIQUE (name)