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.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

37 rivejä
1.3 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. `charnameid` int(11) DEFAULT NULL,
  17. `locationid` int(2) DEFAULT NULL,
  18. `goldrec` int(4) DEFAULT NULL,
  19. `material` varchar(30) DEFAULT NULL,
  20. `itemreq` int(2) DEFAULT NULL,
  21. `itemtype` varchar(13) DEFAULT NULL,
  22. `itemattribute` varchar(15) DEFAULT NULL,
  23. `itemrarity` varchar(6) DEFAULT NULL,
  24. `itemname` varchar(100) DEFAULT NULL,
  25. `runetype` varchar(25) DEFAULT NULL COMMENT 'what type of rune is it (clarity, smiting prayers, axe mastery, etc'
  26. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  27. /*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
  28. /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
  29. /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
  30. /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;