Fixed error with table creation

git-svn-id: http://svn.automattic.com/wordpress/trunk@260 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
mikelittle 2003-07-20 10:01:45 +00:00
parent 44198a4506
commit 9909f24327
1 changed files with 3 additions and 3 deletions

View File

@ -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,