Created
December 16, 2019 14:18
-
-
Save deividsoncs/f145caaf30d94f7fc17a50b590229b1e to your computer and use it in GitHub Desktop.
Tabela que armazenda as informações coletadas pelo arduino
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE `historico_temp` ( | |
`id_historico_temp` int(11) NOT NULL AUTO_INCREMENT, | |
`sala` varchar(45) DEFAULT NULL, | |
`temperatura` int(11) DEFAULT NULL, | |
`data` datetime DEFAULT NULL, | |
PRIMARY KEY (`id_historico_temp`) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment