Yet another PHP based Funko Pop collection tracker, about as bare bones as you can get, but it's functional.
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 

41 líneas
1.5 KiB

  1. /*Table structure for table `popcollection` */
  2. CREATE TABLE `popcollection` (
  3. `popcollectionid` int(11) NOT NULL AUTO_INCREMENT,
  4. `popcollection` varchar(40) DEFAULT NULL,
  5. PRIMARY KEY (`popcollectionid`),
  6. KEY `popcollection` (`popcollection`)
  7. ) ENGINE=InnoDB AUTO_INCREMENT=82 DEFAULT CHARSET=latin1;
  8. /*Table structure for table `popimages` */
  9. CREATE TABLE `popimages` (
  10. `imageid` int(11) NOT NULL AUTO_INCREMENT,
  11. `funkoid` int(11) DEFAULT NULL COMMENT 'the funko pop itself',
  12. `userid` int(11) DEFAULT NULL COMMENT 'the user that uploaded the picture',
  13. `imagepath` text COMMENT 'where the image is physically located',
  14. PRIMARY KEY (`imageid`)
  15. ) ENGINE=InnoDB AUTO_INCREMENT=54 DEFAULT CHARSET=latin1;
  16. /*Table structure for table `pops` */
  17. CREATE TABLE `pops` (
  18. `funkoid` int(11) NOT NULL AUTO_INCREMENT,
  19. `userid` int(11) DEFAULT NULL,
  20. `popno` int(11) DEFAULT NULL,
  21. `popname` varchar(200) DEFAULT NULL,
  22. `popcollectionid` int(11) DEFAULT NULL COMMENT 'Game of Thrones, Voltron, TV, Movies, Asia, etc etc',
  23. `inserteddate` date DEFAULT NULL,
  24. PRIMARY KEY (`funkoid`),
  25. KEY `popname` (`popname`)
  26. ) ENGINE=InnoDB AUTO_INCREMENT=297 DEFAULT CHARSET=latin1;
  27. /*Table structure for table `users` */
  28. CREATE TABLE `users` (
  29. `userid` int(11) NOT NULL AUTO_INCREMENT,
  30. `username` varchar(200) DEFAULT NULL,
  31. `passwd` varchar(200) DEFAULT NULL,
  32. `email` varchar(200) DEFAULT NULL,
  33. PRIMARY KEY (`userid`)
  34. ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;