Guest User

Untitled

a guest
Apr 15th, 2024
346
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. CREATE TABLE IF NOT EXISTS `ak4y_playtimeshop` (
  2. `#` int(11) NOT NULL AUTO_INCREMENT,
  3. `citizenid` varchar(255) NOT NULL DEFAULT '0',
  4. `coin` int(11) DEFAULT NULL,
  5. `firstName` varchar(255) DEFAULT NULL,
  6. `lastName` varchar(255) DEFAULT NULL,
  7. PRIMARY KEY (`#`)
  8. ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
  9.  
  10. also this one:
  11.  
  12. CREATE TABLE IF NOT EXISTS `ak4y_playtimeshop_codes` (
  13. `#` int(11) NOT NULL AUTO_INCREMENT,
  14. `code` varchar(50) DEFAULT NULL,
  15. `credit` int(11) DEFAULT NULL,
  16. PRIMARY KEY (`#`)
  17. ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
Tags: sql
Advertisement
Add Comment
Please, Sign In to add comment