source: branches/mvc/SQL/Data.sql

Last change on this file was 40, checked in by george, 15 years ago
  • Upraveno: Struktura souborů projektu přepracována na systém MVC.
File size: 418 bytes
Line 
1CREATE TABLE IF NOT EXISTS `data` (
2 `time` datetime NOT NULL default '0000-00-00 00:00:00',
3 `measure` smallint(11) NOT NULL default '0',
4 `min` int(11) NOT NULL default '0',
5 `avg` int(11) NOT NULL default '0',
6 `max` int(11) NOT NULL default '0',
7 `continuity` tinyint(1) NOT NULL default '0',
8 `level` tinyint(4) NOT NULL default '0',
9 KEY `time` (`time`)
10) ENGINE=MyISAM DEFAULT CHARSET=latin2;
Note: See TracBrowser for help on using the repository browser.