From 1740189e2b7d5f7176f82fdfb992ac85217488b6 Mon Sep 17 00:00:00 2001 From: Mike Little Date: Sun, 20 Jul 2003 10:01:45 +0000 Subject: [PATCH] Fixed error with table creation git-svn-id: https://develop.svn.wordpress.org/trunk@260 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/upgrade-071-to-072.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-admin/upgrade-071-to-072.php b/wp-admin/upgrade-071-to-072.php index d819a5d885..e67f4c7eaf 100644 --- a/wp-admin/upgrade-071-to-072.php +++ b/wp-admin/upgrade-071-to-072.php @@ -119,7 +119,7 @@ if (maybe_create_table($tablename, $ddl) == true) { } $tablename = $tableoptiongroups; -$query = " +$ddl = " CREATE TABLE $tableoptiongroups ( group_id int(11) NOT NULL auto_increment, group_name varchar(64) not null, @@ -137,7 +137,7 @@ if (maybe_create_table($tablename, $ddl) == true) { } $tablename = $tableoptiongroup_options; -$query = " +$ddl = " CREATE TABLE $tableoptiongroup_options ( group_id int(11) NOT NULL, option_id int(11) NOT NULL, @@ -154,7 +154,7 @@ if (maybe_create_table($tablename, $ddl) == true) { } $tablename = $tableoptionvalues; -$query = " +$ddl = " CREATE TABLE $tableoptionvalues ( option_id int(11) NOT NULL, optionvalue tinytext,