diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-03-30 04:55:59 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-03-30 04:55:59 +0000 |
commit | 39c3344ac6bb252d4f5f9aa2afd13c2cf989562d (patch) | |
tree | f3998c4b26a15e6d784d143edf2628e0eb898919 | |
parent | fbabc0d98553d136f54073dc1624310bd07e11dc (diff) | |
download | brdo-39c3344ac6bb252d4f5f9aa2afd13c2cf989562d.tar.gz brdo-39c3344ac6bb252d4f5f9aa2afd13c2cf989562d.tar.bz2 |
#365996 by sammys: Correct timestamp type name in PostgreSQL.
-rw-r--r-- | includes/database/pgsql/schema.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/database/pgsql/schema.inc b/includes/database/pgsql/schema.inc index be8755102..b5e0df8a6 100644 --- a/includes/database/pgsql/schema.inc +++ b/includes/database/pgsql/schema.inc @@ -240,7 +240,7 @@ class DatabaseSchema_pgsql extends DatabaseSchema { 'blob:big' => 'bytea', 'blob:normal' => 'bytea', - 'datetime:normal' => 'timestamp', + 'datetime:normal' => 'timestamp without time zone', 'serial:tiny' => 'serial', 'serial:small' => 'serial', |