1
0

jobstuff.sql 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*
  2. Navicat MySQL Data Transfer
  3. Source Server : localhost
  4. Source Server Version : 50528
  5. Source Host : localhost:3306
  6. Source Database : test
  7. Target Server Type : MYSQL
  8. Target Server Version : 50528
  9. File Encoding : 65001
  10. Date: 2013-06-02 17:55:05
  11. */
  12. SET FOREIGN_KEY_CHECKS=0;
  13. -- ----------------------------
  14. -- Table structure for `jobstuff`
  15. -- ----------------------------
  16. DROP TABLE IF EXISTS `jobstuff`;
  17. CREATE TABLE `jobstuff` (
  18. `id` int(11) NOT NULL AUTO_INCREMENT,
  19. `pId` int(11) NOT NULL,
  20. `junkmetal` int(11) NOT NULL DEFAULT '0',
  21. `newcoin` int(11) NOT NULL DEFAULT '0',
  22. `oldcoin` int(11) NOT NULL DEFAULT '0',
  23. `brokenwatch` int(11) NOT NULL DEFAULT '0',
  24. `oldkey` int(11) NOT NULL DEFAULT '0',
  25. `treasure` int(11) NOT NULL DEFAULT '0',
  26. `goldwatch` int(11) NOT NULL DEFAULT '0',
  27. `silvernugget` int(11) NOT NULL DEFAULT '0',
  28. `goldnugget` int(11) NOT NULL DEFAULT '0',
  29. PRIMARY KEY (`id`)
  30. ) ENGINE=InnoDB AUTO_INCREMENT=159794 DEFAULT CHARSET=latin1;
  31. -- ----------------------------
  32. -- Records of jobstuff
  33. -- ----------------------------