root/trunk/sql/updates/0.7/3961_uptime.sql @ 2

Revision 2, 323 bytes (checked in by yumileroy, 17 years ago)

[svn] * Proper SVN structure

Original author: Neo2003
Date: 2008-10-02 16:23:55-05:00

Line 
1DROP TABLE IF EXISTS `uptime`;
2CREATE TABLE `uptime` (
3  `starttime` bigint(11) unsigned NOT NULL default '0',
4  `startstring` varchar(64) NOT NULL default '',
5  `uptime` bigint(11) unsigned NOT NULL default '0',
6  PRIMARY KEY  (`starttime`)
7) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Uptime system';
Note: See TracBrowser for help on using the browser.