Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. CREATE TABLE `clothes` (
  2. `id` int(11) NOT NULL,
  3. `type` int(1) NOT NULL,
  4. `model` int(8) NOT NULL,
  5. `price` int(25) NOT NULL,
  6. `price_pp` int(5) NOT NULL,
  7. `price_bp` int(10) NOT NULL
  8. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  9.  
  10. CREATE TABLE `player_clothes` (
  11. `id` int(11) NOT NULL,
  12. `user_id` int(25) NOT NULL,
  13. `clothes_id` int(25) NOT NULL,
  14. `attached` int(1) NOT NULL,
  15. `type` int(1) NOT NULL
  16. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement