Postado Fevereiro 21, 2013 12 anos Galera quando eu tento banir um player da erro no ot fala que ja foi banido e no distro diz que não tem a tabela bans como adiciono ? mysql_real_query(): INSERT INTO `bans` (`id`, `type`, `value`, `param`, `expires`, `added`, `admin_id`, `comment`, `reason`, `action`, `statement`) VALUES (NULL, 3, 6280822, 389, 1364059777, 1361467777, 10, 'a', 4, 4, '') - MYSQL ERROR: Unknown column 'action' in 'field list' (1054) Editado Fevereiro 21, 2013 12 anos por kaio Santos (veja o histórico de edições)
Postado Fevereiro 21, 2013 12 anos ALTER TABLE bans ADD `action` int(10) unsigned NOT NULL DEFAULT '0';
Postado Junho 22, 2013 11 anos DROP TABLE IF EXISTS `bans`; CREATE TABLE `bans`( `id` INT UNSIGNED NOT NULL auto_increment, `type` TINYINT(1) NOT NULL COMMENT '1 - ip banishment, 2 - namelock, 3 - account banishment, 4 - notation, 5 - deletion', `value` INT UNSIGNED NOT NULL COMMENT 'ip address (integer), player guid or account number', `param` INT UNSIGNED NOT NULL DEFAULT 4294967295 COMMENT 'used only for ip banishment mask (integer)', `active` TINYINT(1) NOT NULL DEFAULT TRUE, `expires` INT NOT NULL, `added` INT UNSIGNED NOT NULL, `admin_id` INT UNSIGNED NOT NULL DEFAULT 0, `comment` TEXT NOT NULL, `reason` INT UNSIGNED NOT NULL DEFAULT 0, `action` INT UNSIGNED NOT NULL DEFAULT 0, `statement` VARCHAR(255) NOT NULL DEFAULT '', PRIMARY KEY (`id`), KEY `type` (`type`, `value`), KEY `active` (`active`)) ENGINE = InnoDB; DIDITO ME ADD SKYPE SUPPORTEASYWAR, TINHAPERIDODO CONTATO COM VOCE COM A MUDANÇA DO MSN PARA O SKYPE
Participe da conversa
Você pode postar agora e se cadastrar mais tarde. Se você tem uma conta, faça o login para postar com sua conta.