Guest User

Untitled

a guest
Nov 24th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. DROP TABLE IF EXISTS `uptime`;
  2. CREATE TABLE `uptime` (
  3. `realmid` int(11) unsigned NOT NULL,
  4. `starttime` bigint(20) unsigned NOT NULL DEFAULT '0',
  5. `startstring` varchar(64) NOT NULL DEFAULT '',
  6. `uptime` bigint(20) unsigned NOT NULL DEFAULT '0',
  7. `maxplayers` smallint(5) unsigned NOT NULL DEFAULT '0',
  8. PRIMARY KEY (`realmid`,`starttime`)
  9. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Uptime system';
  10.  
  11. -- ----------------------------
  12. -- Records of uptime
  13. -- ----------------------------
  14. INSERT INTO `uptime` VALUES ('1', '1314813938', '2011-08-31 20:05:38', '0', '0');
  15. INSERT INTO `uptime` VALUES ('1', '1314823357', '2011-08-31 22:42:37', '600', '1');
  16. INSERT INTO `uptime` VALUES ('1', '1314876980', '2011-09-01 13:36:20', '600', '1');
  17. INSERT INTO `uptime` VALUES ('1', '1314878212', '2011-09-01 13:56:52', '1201', '1');
Add Comment
Please, Sign In to add comment