Advertisement
xTaric

WOT Table

Jun 15th, 2015
271
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 0.53 KB | None | 0 0
  1. ROP TABLE IF EXISTS `wotplayerrank`;
  2. CREATE TABLE `wotplayerrank` (
  3. `breaks` INT(11) UNSIGNED NOT NULL DEFAULT '0',
  4. `name` VARCHAR(255) NOT NULL DEFAULT '',
  5. `kills` INT(11) UNSIGNED NOT NULL DEFAULT '0',
  6. `deaths` INT(11) UNSIGNED NOT NULL DEFAULT '0'
  7. ) ENGINE=MyISAM;
  8.  
  9. DROP TABLE IF EXISTS `wotrank`;
  10. CREATE TABLE `wotrank` (
  11. `wins` INT(11) UNSIGNED NOT NULL DEFAULT '0',
  12. `gname` VARCHAR(255) NOT NULL DEFAULT '',
  13. `kills` INT(11) UNSIGNED NOT NULL DEFAULT '0',
  14. `deaths` INT(11) UNSIGNED NOT NULL DEFAULT '0'
  15. ) ENGINE=MyISAM;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement