Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- CREATE TABLE IF NOT EXISTS `ak4y_playtimeshop` (
- `#` int(11) NOT NULL AUTO_INCREMENT,
- `citizenid` varchar(255) NOT NULL DEFAULT '0',
- `coin` int(11) DEFAULT NULL,
- `firstName` varchar(255) DEFAULT NULL,
- `lastName` varchar(255) DEFAULT NULL,
- PRIMARY KEY (`#`)
- ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
- also this one:
- CREATE TABLE IF NOT EXISTS `ak4y_playtimeshop_codes` (
- `#` int(11) NOT NULL AUTO_INCREMENT,
- `code` varchar(50) DEFAULT NULL,
- `credit` int(11) DEFAULT NULL,
- PRIMARY KEY (`#`)
- ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
Advertisement
Add Comment
Please, Sign In to add comment