Skip to content

Instantly share code, notes, and snippets.

@lucasalvessouza
Created September 20, 2017 02:17
Show Gist options
  • Save lucasalvessouza/fc9d20bbf1e18921bb2270a5b575c2e1 to your computer and use it in GitHub Desktop.
Save lucasalvessouza/fc9d20bbf1e18921bb2270a5b575c2e1 to your computer and use it in GitHub Desktop.
Create table
CREATE TABLE data_climate (
id int NOT NULL AUTO_INCREMENT,
data varchar(25) NOT NULL,
id_event varchar(20),
json_data varchar(500),
PRIMARY KEY (id)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment