Skip to content
Snippets Groups Projects
Commit 34265be9 authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Patch 42652 by Goba: fixed upgrade issue related to MySQL 5.

parent ea2d7910
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -223,7 +223,7 @@ function system_update_117() { ...@@ -223,7 +223,7 @@ function system_update_117() {
$ret = array(); $ret = array();
if ($GLOBALS['db_type'] == 'mysql') { if ($GLOBALS['db_type'] == 'mysql') {
$ret[] = update_sql("CREATE TABLE {vocabulary_node_types} ( $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 '', type varchar(16) NOT NULL default '',
PRIMARY KEY (vid, type))"); PRIMARY KEY (vid, type))");
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment