Advertisement
Guest User

Untitled

a guest
May 22nd, 2015
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.54 KB | None | 0 0
  1. CREATE TABLE `account_battle_pet` (
  2. `guid` bigint(20) unsigned NOT NULL DEFAULT '0',
  3. `accountId` int(10) unsigned NOT NULL DEFAULT '0',
  4. `species` smallint(5) unsigned NOT NULL DEFAULT '0',
  5. `nickname` varchar(16) NOT NULL DEFAULT '',
  6. `timestamp` int(10) unsigned NOT NULL DEFAULT '0',
  7. `level` tinyint(3) unsigned NOT NULL DEFAULT '1',
  8. `xp` smallint(5) unsigned NOT NULL DEFAULT '0',
  9. `health` smallint(5) unsigned NOT NULL DEFAULT '0',
  10. `maxHealth` smallint(5) unsigned NOT NULL DEFAULT '0',
  11. `power` smallint(5) unsigned NOT NULL DEFAULT '0',
  12. `speed` smallint(5) unsigned NOT NULL DEFAULT '0',
  13. `quality` tinyint(3) unsigned NOT NULL DEFAULT '0',
  14. `breed` tinyint(3) unsigned NOT NULL DEFAULT '0',
  15. `flags` smallint(5) unsigned NOT NULL DEFAULT '0',
  16. PRIMARY KEY (`guid`)
  17. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  18.  
  19. CREATE TABLE `account_battle_pet_slots` (
  20. `accountId` int(10) unsigned NOT NULL DEFAULT '0',
  21. `slot1` bigint(20) unsigned NOT NULL DEFAULT '0',
  22. `slot2` bigint(20) unsigned NOT NULL DEFAULT '0',
  23. `slot3` bigint(20) unsigned NOT NULL DEFAULT '0',
  24. `flags` tinyint(3) unsigned NOT NULL DEFAULT '0',
  25. PRIMARY KEY (`accountId`)
  26. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  27.  
  28. CREATE TABLE `account_wide` (
  29. `id` int(10) unsigned NOT NULL,
  30. `type` smallint(3) unsigned NOT NULL,
  31. `value1` int(10) unsigned NOT NULL,
  32. `value2` int(10) unsigned NOT NULL,
  33. `value3` int(10) unsigned NOT NULL,
  34. `favorite` smallint(3) unsigned NOT NULL,
  35. PRIMARY KEY (`id`,`value1`)
  36. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement