Skip to content

Instantly share code, notes, and snippets.

@deividsoncs
Created December 16, 2019 14:18
Show Gist options
  • Save deividsoncs/f145caaf30d94f7fc17a50b590229b1e to your computer and use it in GitHub Desktop.
Save deividsoncs/f145caaf30d94f7fc17a50b590229b1e to your computer and use it in GitHub Desktop.
Tabela que armazenda as informações coletadas pelo arduino
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