Advertisement
Guest User

OnlineGamingTime

a guest
Jan 19th, 2015
413
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 0.30 KB | None | 0 0
  1. -- http://hercules.ws/board/topic/8277-online-gaming-time/
  2. DROP TABLE IF EXISTS `onlinetime`;
  3. CREATE TABLE IF NOT EXISTS `onlinetime` (
  4.   `account_id` INT(11) NOT NULL DEFAULT '0',
  5.   `start_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  6.   `total_sec` INT(11) NOT NULL DEFAULT '0'
  7. ) ENGINE=MyISAM;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement