Arrumando alguns erros na Database

Aprenda a arrumar erros da sua phpmyadmin bem simples.
Obs: Para colocar cada um dos códigos apresentados aqui, vá até seu php e abra sua database, e clique em "SQL", coloque o código que deseja e clique em executar.

Arrumando o erro Unknown column 'working' in 'field list' :
Execute o seguinte código sql:
ALTER TABLE `users` ADD COLUMN `working` varchar(50) NOT NULL DEFAULT '0'

Arrumando o erro Unknown column 'secretcode' in 'field list' :
Execute o seguinte código sql:
ALTER TABLE `users` ADD COLUMN `secretcode` varchar(50) NOT NULL DEFAULT '0'

Arrumando o erro Unknown column 'mymusik' in 'field list' :
Execute o seguinte código sql:
ALTER TABLE `users` ADD COLUMN `mymusik` varchar(50) NOT NULL DEFAULT '0'

Arrumando o erro Unknown column 'pethair' in 'field list' :
Execute o seguinte código sql:
ALTER TABLE `user_pets` ADD COLUMN `pethair` int(11) NOT NULL

Arrumando o erro Unknown column 'hairdye' in 'field list :
Execute o seguinte código sql:
ALTER TABLE `user_pets` ADD COLUMN `hairdye` int(11) NOT NULL

Arrumando o erro Table 'homes_stickers' doesn't exist :
Execute o seguinte código sql:
CREATE TABLE IF NOT EXISTS `homes_stickers` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `userid` int(11) NOT NULL,
  `x` varchar(6) NOT NULL DEFAULT '1' COMMENT 'left',
  `y` varchar(6) NOT NULL DEFAULT '1' COMMENT 'top',
  `z` varchar(6) NOT NULL DEFAULT '1' COMMENT 'boder:',
  `data` text NOT NULL,
  `type` varchar(1) NOT NULL DEFAULT '1',
  `subtype` varchar(1) NOT NULL DEFAULT '0' COMMENT 'Widget Type (if widget)',
  `skin` text NOT NULL,
  `groupid` int(11) NOT NULL DEFAULT '-1',
  `var` int(100) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=51 ;

Arrumando o erro Table 'habbo.homes_group_linker' doesn't exist :
Execute o seguinte código sql:
CREATE TABLE IF NOT EXISTS `homes_group_linker` (
  `userid` int(11) NOT NULL,
  `groupid` int(11) NOT NULL,
  `active` varchar(1) NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

Arrumando o erro Table 'habbo.cms_hotcampaigns' doesn't exist :
Execute o seguinte código sql:
-- phpMyAdmin SQL Dump
-- version 3.5.5
-- http://www.phpmyadmin.net
--
-- Servidor: localhost
-- Tempo de Geração: 20/01/2013 às 06:47:21
-- Versão do Servidor: 5.5.28-cll
-- Versão do PHP: 5.2.6

SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";


/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;

--
-- Banco de Dados: `hardhote_habbo`
--

-- --------------------------------------------------------

--
-- Estrutura da tabela `cms_hotcampaigns`
--

CREATE TABLE IF NOT EXISTS `cms_hotcampaigns` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `image_url` text NOT NULL,
  `caption` text NOT NULL,
  `descr` text NOT NULL,
  `url` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ;

--
-- Extraindo dados da tabela `cms_hotcampaigns`
--

INSERT INTO `cms_hotcampaigns` (`id`, `image_url`, `caption`, `descr`, `url`) VALUES
(3, 'http://www.habborator.org/archive/banners/hot/hotcampaign_examv2.gif', 'Acesse o CriandoHABBOS!', 'Clique!.', 'http://criandohabbos.net');

/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;


Créditos:
-TrY!
-Edu'