· 6 years ago · Jul 12, 2019, 08:02 PM
1DROP TABLE IF EXISTS `catalog_promotions`;CREATE TABLE `catalog_promotions` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(35) DEFAULT '', `title_en` varchar(35) DEFAULT NULL, `title_br` varchar(35) DEFAULT NULL, `image` varchar(75) DEFAULT '', `unknown` int(11) DEFAULT '0', `page_link` varchar(35) DEFAULT '', `parent_id` int(11) DEFAULT '0', PRIMARY KEY (`id`)) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1 ROW_FORMAT=COMPACT;INSERT INTO `catalog_promotions` VALUES ('1', 'Bienvenue sur le catalogue', 'Welcome to the catalog', 'Bem-vindo ao catálogo', 'catalogue/feature_cata_hort_acceuil.png?cache=3', '0', 'frontpage', '-1');INSERT INTO `catalog_promotions` VALUES ('2', 'Découvre les derniers mobis', 'Discover the latest mobis', 'Descubra o mais recente mobis', 'catalogue/feature_cata_hort_furni.png?cache=2', '0', 'Nouveauxmobis', '-1');INSERT INTO `catalog_promotions` VALUES ('3', 'Visite la boutique animaux', 'Visit the animal shop', 'Visite a loja de animais', 'catalogue/feature_cata_hort_pets.png?cache=4', '0', 'Wibboanimaux', '-1');INSERT INTO `catalog_promotions` VALUES ('4', 'Notre boutique des Rares', 'Our Rare Shop', 'Nossa loja rara', 'catalogue/feature_cata_hort_wp.png?cache=1', '0', 'wpmagot', '-1');
2CREATE TABLE `chatlogs` ( `id` int(11) NOT NULL AUTO_INCREMENT, `user_id` int(11) NOT NULL, `room_id` int(11) NOT NULL, `user_name` varchar(200) NOT NULL, `timestamp` double NOT NULL, `message` varchar(150) NOT NULL, `type` varchar(10) NOT NULL, PRIMARY KEY (`id`), KEY `user_id` (`user_id`), KEY `room_id` (`room_id`), KEY `timestamp` (`timestamp`), FULLTEXT KEY `message` (`message`)) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=latin1 ROW_FORMAT=COMPACT;
3
4ALTER TABLE `users`ADD COLUMN `ignoreall` enum('0','1') NOT NULL DEFAULT '0' AFTER `langue`;