CREATE TABLE `udoo_data` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `sensor` varchar(64) DEFAULT NULL,
  `s1` double DEFAULT NULL,
  `s2` double DEFAULT NULL,
  `s3` double DEFAULT NULL,
  `s4` double DEFAULT NULL,
  `s5` double DEFAULT NULL,
  `s6` double DEFAULT NULL,
  `lat` double DEFAULT NULL,
  `lng` double DEFAULT NULL,
  `datetime` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;