summaryrefslogtreecommitdiff
path: root/database
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2005-12-31 10:52:46 +0000
committerDries Buytaert <dries@buytaert.net>2005-12-31 10:52:46 +0000
commit34265be9b760cb22a018c39cb906ca30a5c00f46 (patch)
tree5cdc7c1f4b416e5729900a022b4cf908c1a6ace4 /database
parentea2d79109595f0c936259ffacfccd904f8dcd599 (diff)
downloadbrdo-34265be9b760cb22a018c39cb906ca30a5c00f46.tar.gz
brdo-34265be9b760cb22a018c39cb906ca30a5c00f46.tar.bz2
- Patch 42652 by Goba: fixed upgrade issue related to MySQL 5.
Diffstat (limited to 'database')
-rw-r--r--database/updates.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/database/updates.inc b/database/updates.inc
index 22412f5d6..966fb6c63 100644
--- a/database/updates.inc
+++ b/database/updates.inc
@@ -223,7 +223,7 @@ function system_update_117() {
$ret = array();
if ($GLOBALS['db_type'] == 'mysql') {
$ret[] = update_sql("CREATE TABLE {vocabulary_node_types} (
- vid int(10) NOT NULL default '',
+ vid int(10) NOT NULL default '0',
type varchar(16) NOT NULL default '',
PRIMARY KEY (vid, type))");
}