diff --git a/drifter.cabal b/drifter.cabal
--- a/drifter.cabal
+++ b/drifter.cabal
@@ -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.
diff --git a/src/Drifter/PostgreSQL.hs b/src/Drifter/PostgreSQL.hs
--- a/src/Drifter/PostgreSQL.hs
+++ b/src/Drifter/PostgreSQL.hs
@@ -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)
