Created
September 20, 2017 02:17
-
-
Save lucasalvessouza/fc9d20bbf1e18921bb2270a5b575c2e1 to your computer and use it in GitHub Desktop.
Create table
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 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