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:
parent
44198a4506
commit
9909f24327
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue