Failed to create table.
-
I get the Failed to create table error when trying to apply the following sql statement:
CREATE TABLE
wp_actionlist
(
task_id
int(11) NOT NULL AUTO_INCREMENT,
task_name
longtext NOT NULL,
urgency
int(11) NOT NULL DEFAULT 0,
importance
int(11) NOT NULL DEFAULT 0,
who
text NOT NULL DEFAULT ‘0’,
due
date NOT NULL DEFAULT ‘0’,
created
datetime NOT NULL DEFAULT ‘0000-00-00 00:00:00’ COMMENT ‘Created Datetime’,
updated
timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT ‘Updated Datetime’,
PRIMARY KEY(task_id
) )
ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT=’actionlist’ AUTO_INCREMENT=1;https://www.ads-software.com/plugins/custom-database-tables/
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Failed to create table.’ is closed to new replies.