Advertisement
Guest User

Untitled

a guest
Apr 30th, 2012
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 1.21 KB | None | 0 0
  1. --
  2. -- Table structure for table `hungergames_records`
  3. --
  4.  
  5. CREATE TABLE IF NOT EXISTS `hungergames_records` (
  6.   `user_id` int(10) unsigned NOT NULL,
  7.   `victories` int(32) unsigned NOT NULL DEFAULT '0',
  8.   `biggest_kill_streak` int(32) unsigned NOT NULL DEFAULT '0',
  9.   `most_chests_opened` int(32) unsigned NOT NULL DEFAULT '0',
  10.   `total_chests_opened` int(32) unsigned NOT NULL DEFAULT '0',
  11.   `lastlogin` int(32) unsigned NOT NULL DEFAULT '0',
  12.   `longest_lifespan` int(32) unsigned NOT NULL DEFAULT '0',
  13.   `total_lifespan` int(32) unsigned NOT NULL DEFAULT '0',
  14.   `total_points` int(32) unsigned NOT NULL DEFAULT '100',
  15.   `most_points` int(32) unsigned NOT NULL DEFAULT '0',
  16.   PRIMARY KEY (`user_id`)
  17. ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
  18.  
  19. -- --------------------------------------------------------
  20.  
  21. --
  22. -- Table structure for table `hungergames_users`
  23. --
  24.  
  25. CREATE TABLE IF NOT EXISTS `hungergames_users` (
  26.   `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  27.   `donor` int(32) unsigned NOT NULL DEFAULT '0',
  28.   `user` varchar(40) NOT NULL,
  29.   `donor_cooldown` int(100) unsigned NOT NULL DEFAULT '0',
  30.   PRIMARY KEY (`id`),
  31.   UNIQUE KEY `user` (`user`)
  32. ) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=12641 ;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement