armark1ng

Untitled

Jul 18th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.13 KB | None | 0 0
  1. CREATE TABLE `stats` (
  2. `player_name` varchar(15) NOT NULL,
  3. `rights` double DEFAULT NULL,
  4. `title_id` varchar(10) NOT NULL,
  5. `game_mode` int(11) NOT NULL,
  6. `prestige` int(11) NOT NULL,
  7. `totallvl` double NOT NULL,
  8. `totalxp` double DEFAULT NULL,
  9. `combat_lvl` varchar(10) NOT NULL,
  10. `Attacklvl` double DEFAULT NULL,
  11. `Attackxp` double DEFAULT NULL,
  12. `Defencelvl` double DEFAULT NULL,
  13. `Defencexp` double DEFAULT NULL,
  14. `Strengthlvl` double DEFAULT NULL,
  15. `Strengthxp` double DEFAULT NULL,
  16. `Hitpointslvl` double DEFAULT NULL,
  17. `Hitpointsxp` double DEFAULT NULL,
  18. `Rangelvl` double DEFAULT NULL,
  19. `Rangexp` double DEFAULT NULL,
  20. `Prayerlvl` double DEFAULT NULL,
  21. `Prayerxp` double DEFAULT NULL,
  22. `Magiclvl` double DEFAULT NULL,
  23. `Magicxp` double DEFAULT NULL,
  24. `Cookinglvl` double DEFAULT NULL,
  25. `Cookingxp` double DEFAULT NULL,
  26. `Woodcuttinglvl` double DEFAULT NULL,
  27. `Woodcuttingxp` double DEFAULT NULL,
  28. `Fletchinglvl` double DEFAULT NULL,
  29. `Fletchingxp` double DEFAULT NULL,
  30. `Fishinglvl` double DEFAULT NULL,
  31. `Fishingxp` double DEFAULT NULL,
  32. `Firemakinglvl` double DEFAULT NULL,
  33. `Firemakingxp` double DEFAULT NULL,
  34. `Craftinglvl` double DEFAULT NULL,
  35. `Craftingxp` double DEFAULT NULL,
  36. `Smithinglvl` double DEFAULT NULL,
  37. `Smithingxp` double DEFAULT NULL,
  38. `Mininglvl` double DEFAULT NULL,
  39. `Miningxp` double DEFAULT NULL,
  40. `Herblorelvl` double DEFAULT NULL,
  41. `Herblorexp` double DEFAULT NULL,
  42. `Agilitylvl` double DEFAULT NULL,
  43. `Agilityxp` double DEFAULT NULL,
  44. `Thievinglvl` double DEFAULT NULL,
  45. `Thievingxp` double DEFAULT NULL,
  46. `Slayerlvl` double DEFAULT NULL,
  47. `Slayerxp` double DEFAULT NULL,
  48. `Farminglvl` double DEFAULT NULL,
  49. `Farmingxp` double DEFAULT NULL,
  50. `Runecraftlvl` double DEFAULT NULL,
  51. `Runecraftxp` double DEFAULT NULL,
  52. `Hunterlvl` double DEFAULT NULL,
  53. `Hunterxp` double DEFAULT NULL,
  54. `Constructionlvl` double DEFAULT NULL,
  55. `Constructionxp` double DEFAULT NULL,
  56. `Summoninglvl` double DEFAULT NULL,
  57. `Summoningxp` double DEFAULT NULL,
  58. `Dungeoneeringlvl` double DEFAULT NULL,
  59. `Dungeoneeringxp` double DEFAULT NULL,
  60. PRIMARY KEY (`player_name`)
  61. ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
Advertisement
Add Comment
Please, Sign In to add comment