Fixed; you need to add the syntax if you're a heartstone user make a new sql file and add this.
ALTER TABLE accounts DROP COLUMN muted;
ALTER TABLE accounts ADD COLUMN muted int1 unsigned not null default 0;
Or if you don't have a muted column in your accounts table simply
ALTER TABLE accounts ADD COLUMN muted int1 unsigned not null default 0;