diff options
author | Matt Kohls <mattkohls13@gmail.com> | 2016-04-11 23:53:38 -0400 |
---|---|---|
committer | Matt Kohls <mattkohls13@gmail.com> | 2016-04-11 23:53:38 -0400 |
commit | 614562bf2cf048b049af5304fead92a46f080d3e (patch) | |
tree | b228fbd77cc44d948b3998968f2f6d912ad8c2d9 /schema.sql | |
download | Sensor-Server-614562bf2cf048b049af5304fead92a46f080d3e.tar.gz Sensor-Server-614562bf2cf048b049af5304fead92a46f080d3e.tar.bz2 Sensor-Server-614562bf2cf048b049af5304fead92a46f080d3e.zip |
Initial Commit.
Basic webapp that can save/display weather data
Diffstat (limited to 'schema.sql')
-rw-r--r-- | schema.sql | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/schema.sql b/schema.sql new file mode 100644 index 0000000..7652fe8 --- /dev/null +++ b/schema.sql @@ -0,0 +1,8 @@ +drop table if exists weather; +create table weather ( + id integer primary key autoincrement, + date timestamp, + temperature float, + humidity float, + pressure float +); |