Just a web script to help track when, where, and what you got from the free treasures scattered about Nightfall in the game Guild Wars.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 

38 lignes
1.4 KiB

  1. /*
  2. SQLyog Ultimate v12.09 (64 bit)
  3. MySQL - 5.5.52-MariaDB : Database - mauirixxx
  4. *********************************************************************
  5. */
  6. /*!40101 SET NAMES utf8 */;
  7. /*!40101 SET SQL_MODE=''*/;
  8. /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
  9. /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
  10. /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
  11. /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
  12. /*Table structure for table `history` */
  13. CREATE TABLE `history` (
  14. `historyid` int(11) NOT NULL AUTO_INCREMENT,
  15. `historydate` date DEFAULT NULL,
  16. `userid` int(11) DEFAULT NULL,
  17. `charnameid` int(11) DEFAULT NULL,
  18. `locationid` int(2) DEFAULT NULL,
  19. `goldrec` int(4) DEFAULT NULL,
  20. `material` varchar(30) DEFAULT NULL,
  21. `itemreq` int(2) DEFAULT NULL,
  22. `itemtype` varchar(13) DEFAULT NULL,
  23. `itemattribute` varchar(15) DEFAULT NULL,
  24. `itemrarity` varchar(6) DEFAULT NULL,
  25. `itemname` varchar(100) DEFAULT NULL,
  26. `runetype` varchar(25) DEFAULT NULL COMMENT 'what type of rune is it (clarity, smiting prayers, axe mastery, etc'
  27. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  28. /*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
  29. /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
  30. /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
  31. /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;