<code> $departments_sql = "CREATE TABLE IF NOT EXISTS '" . $departments . "'(
'ID' bigint(20) NOT NULL AND AUTO_INCREMENT,
'name' varchar(128) NOT NULL,
'parent' bigint(20) NOT NULL DEFAULT '0',
'position' int(11) NOT NULL DEFAULT '1',
'description' varchar(512) DEFAULT NULL,
PRIMARY KEY ('ID'),
KEY 'parent' ('parent'))
ENGINE=InnoDB" . $charset . ";";
</code>
<code> $departments_sql = "CREATE TABLE IF NOT EXISTS '" . $departments . "'(
'ID' bigint(20) NOT NULL AND AUTO_INCREMENT,
'name' varchar(128) NOT NULL,
'parent' bigint(20) NOT NULL DEFAULT '0',
'position' int(11) NOT NULL DEFAULT '1',
'description' varchar(512) DEFAULT NULL,
PRIMARY KEY ('ID'),
KEY 'parent' ('parent'))
ENGINE=InnoDB" . $charset . ";";
</code>
$departments_sql = "CREATE TABLE IF NOT EXISTS '" . $departments . "'(
'ID' bigint(20) NOT NULL AND AUTO_INCREMENT,
'name' varchar(128) NOT NULL,
'parent' bigint(20) NOT NULL DEFAULT '0',
'position' int(11) NOT NULL DEFAULT '1',
'description' varchar(512) DEFAULT NULL,
PRIMARY KEY ('ID'),
KEY 'parent' ('parent'))
ENGINE=InnoDB" . $charset . ";";
make table with plugin in wordpress
but doesn’t work
New contributor
Ahmad Reza Hajizadeh is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.