Advertisement
Guest User

Untitled

a guest
Jun 28th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. DROP TABLE IF EXISTS `realmlist`;
  2. /*!40101 SET @saved_cs_client = @@character_set_client */;
  3. /*!40101 SET character_set_client = utf8 */;
  4. CREATE TABLE `realmlist` (
  5. `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  6. `name` varchar(32) NOT NULL DEFAULT '',
  7. `address` varchar(32) NOT NULL DEFAULT '127.0.0.1',
  8. `port` int(11) NOT NULL DEFAULT '8085',
  9. `icon` tinyint(3) unsigned NOT NULL DEFAULT '0',
  10. `color` tinyint(3) unsigned NOT NULL DEFAULT '2',
  11. `timezone` tinyint(3) unsigned NOT NULL DEFAULT '0',
  12. `allowedSecurityLevel` tinyint(3) unsigned NOT NULL DEFAULT '0',
  13. `population` float unsigned NOT NULL DEFAULT '0',
  14. `gamebuild` int(11) unsigned NOT NULL DEFAULT '8606',
  15. PRIMARY KEY (`id`),
  16. UNIQUE KEY `idx_name` (`name`)
  17. ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Realm System';
  18. /*!40101 SET character_set_client = @saved_cs_client */;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement