Is there a proper fix for the missing user_history table and usrgrp.debug_mode column?
I ended up running:
I ended up running:
Code:
CREATE TABLE user_history (
userhistoryid bigint unsigned DEFAULT '0' NOT NULL,
userid bigint unsigned DEFAULT '0' NOT NULL,
title1 varchar(255) DEFAULT '' NOT NULL,
url1 varchar(255) DEFAULT '' NOT NULL,
title2 varchar(255) DEFAULT '' NOT NULL,
url2 varchar(255) DEFAULT '' NOT NULL,
title3 varchar(255) DEFAULT '' NOT NULL,
url3 varchar(255) DEFAULT '' NOT NULL,
title4 varchar(255) DEFAULT '' NOT NULL,
url4 varchar(255) DEFAULT '' NOT NULL,
title5 varchar(255) DEFAULT '' NOT NULL,
url5 varchar(255) DEFAULT '' NOT NULL,
PRIMARY KEY (userhistoryid)
) type=InnoDB;
CREATE UNIQUE INDEX user_history_1 on user_history (userid);
alter table usrgrp add debug_mode integer default '0' NOT NULL;
Comment