summaryrefslogtreecommitdiff
path: root/includes/database.pgsql.inc
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-12-23 13:22:12 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-12-23 13:22:12 +0000
commit602cb01718953b894ec79ce2384d2794403ac986 (patch)
tree3cfa4054a6fd33cd2840ee19548e8cf4ced10bc4 /includes/database.pgsql.inc
parente08abdd25259e8a2d8e4986a04e55ecd629f077d (diff)
downloadbrdo-602cb01718953b894ec79ce2384d2794403ac986.tar.gz
brdo-602cb01718953b894ec79ce2384d2794403ac986.tar.bz2
#198234 by bjaspan: fix improper type maps for numeric and char values in schema API
Diffstat (limited to 'includes/database.pgsql.inc')
-rw-r--r--includes/database.pgsql.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/database.pgsql.inc b/includes/database.pgsql.inc
index 1d3cef333..65e049263 100644
--- a/includes/database.pgsql.inc
+++ b/includes/database.pgsql.inc
@@ -444,7 +444,7 @@ function db_type_map() {
// database types back into schema types.
$map = array(
'varchar:normal' => 'varchar',
- 'char:normal' => 'char',
+ 'char:normal' => 'character',
'text:tiny' => 'text',
'text:small' => 'text',