Create createTable.sql

This commit is contained in:
unixweb 2015-04-19 22:06:26 +02:00
parent 1f82898e79
commit 9eba18fee8
1 changed files with 8 additions and 0 deletions

8
createTable.sql Normal file
View File

@ -0,0 +1,8 @@
CREATE TABLE IF NOT EXISTS `temperatures` (
`id` int(255) NOT NULL AUTO_INCREMENT,
`temperature` double NOT NULL,
`humidity` varchar(20) NOT NULL,
`dateMeasured` date NOT NULL,
`hourMeasured` int(128) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;