Doesn't have one, Create it. The emu doesn't depend off Ranks, It was only used for the staff page. (i think).As the title suggests, I'm either really blind or just can't find it. The ranks table for Azure, what is it called?
-- ----------------------------
-- Table structure for `ranks`
-- ----------------------------
DROP TABLE IF EXISTS `ranks`;
CREATE TABLE `ranks` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(50) NOT NULL,
`badgeid` varchar(5) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=latin1;
-- ----------------------------
-- Records of ranks
-- ----------------------------
INSERT INTO `ranks` VALUES ('1', 'User', 'HH1');
INSERT INTO `ranks` VALUES ('2', 'VIP', 'VIP');
INSERT INTO `ranks` VALUES ('3', 'Intern', 'HIT');
INSERT INTO `ranks` VALUES ('4', 'Trial Moderator', 'ADM');
INSERT INTO `ranks` VALUES ('5', 'Moderator', 'ADM');
INSERT INTO `ranks` VALUES ('7', 'Administrator', 'ADM');
INSERT INTO `ranks` VALUES ('8', 'Manager', 'ADM');
INSERT INTO `ranks` VALUES ('9', 'Co-Owner', 'ADM');
INSERT INTO `ranks` VALUES ('10', 'Owner', 'ADM');