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_idint(11) NOT NULL AUTO_INCREMENT,
task_namelongtext NOT NULL,
urgencyint(11) NOT NULL DEFAULT 0,
importanceint(11) NOT NULL DEFAULT 0,
whotext NOT NULL DEFAULT ‘0’,
duedate NOT NULL DEFAULT ‘0’,
createddatetime NOT NULL DEFAULT ‘0000-00-00 00:00:00’ COMMENT ‘Created Datetime’,
updatedtimestamp 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;
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.