Hi,
I’m trying to import my old DB to a new host but this error appears:
CREATE TABLE IF NOT EXISTS
wp_comments(
comment_IDbigint( 20 ) unsigned NOT NULL AUTO_INCREMENT ,
comment_post_IDbigint( 20 ) unsigned NOT NULL default ‘0’,
comment_authortinytext NOT NULL ,
comment_author_emailvarchar( 100 ) NOT NULL default ‘0’,
comment_author_urlvarchar( 200 ) NOT NULL default ‘0’,
comment_author_IPvarchar( 100 ) NOT NULL default ‘0’,
comment_datedatetime NOT NULL default ‘0000-00-00 00:00:00’,
comment_date_gmtdatetime NOT NULL default ‘0000-00-00 00:00:00’,
comment_contenttext NOT NULL ,
comment_karmaint( 11 ) NOT NULL default ‘0’,
comment_approvedvarchar( 20 ) NOT NULL default ‘1’,
comment_agentvarchar( 255 ) NOT NULL default ‘0’,
comment_typevarchar( 20 ) NOT NULL default ‘0’,
comment_parentbigint( 20 ) unsigned NOT NULL default ‘0’,
user_idbigint( 20 ) unsigned NOT NULL default ‘0’,
`` enum( ‘Y’, ‘N’ ) NOT NULL default ‘N’,
PRIMARY KEY (comment_ID) ,
KEYcomment_approved(comment_approved) ,
KEYcomment_post_ID(comment_post_ID) ,
KEYcomment_approved_date_gmt(comment_approved,comment_date_gmt) ,
KEYcomment_date_gmt(comment_date_gmt)
) ENGINE = MYISAM DEFAULT CHARSET = utf8 AUTO_INCREMENT =24076;
#1166 - Incorrect column name ‘’
I don’t know where is the problem. Sorry for my newbies questions.
Thanks!