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.
 
 
 

32 lignes
1.1 KiB

  1. /*
  2. SQLyog Ultimate - MySQL GUI v8.2
  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 `playername` */
  13. CREATE TABLE `playername` (
  14. `playerid` int(11) NOT NULL AUTO_INCREMENT,
  15. `charname` varchar(19) DEFAULT NULL,
  16. `birthdate` date DEFAULT NULL,
  17. `userid` int(11) DEFAULT NULL,
  18. `professionid` int(2) DEFAULT NULL COMMENT 'this is taken from the listruneprofessions table',
  19. `profcolor` char(4) DEFAULT NULL,
  20. PRIMARY KEY (`playerid`)
  21. ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=latin1;
  22. /*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
  23. /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
  24. /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
  25. /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;