Advertisement
plugandplaydev

Database ( Guild Storage with Password and Verification )

Jul 25th, 2016
298
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. /*
  2. MySQL Data Transfer
  3. Source Host: localhost
  4. Source Database: ragnarok
  5. Target Host: localhost
  6. Target Database: ragnarok
  7. Date: 7/25/2016 8:30:59 PM
  8. */
  9.  
  10. SET FOREIGN_KEY_CHECKS=0;
  11. -- ----------------------------
  12. -- Table structure for pnp_gstorage
  13. -- ----------------------------
  14. DROP TABLE IF EXISTS `pnp_gstorage`;
  15. CREATE TABLE `pnp_gstorage` (
  16. `GID` int(11) NOT NULL AUTO_INCREMENT,
  17. `Guild_ID` int(255) NOT NULL,
  18. `Password` varchar(255) NOT NULL,
  19. `Question` varchar(255) NOT NULL,
  20. `Answer` varchar(255) NOT NULL,
  21. PRIMARY KEY (`GID`,`Guild_ID`)
  22. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  23.  
  24. -- ----------------------------
  25. -- Records
  26. -- ----------------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement