aboutsummaryrefslogtreecommitdiffstats
path: root/schema.sql
diff options
context:
space:
mode:
authorMatt Kohls <mattkohls13@gmail.com>2016-04-11 23:53:38 -0400
committerMatt Kohls <mattkohls13@gmail.com>2016-04-11 23:53:38 -0400
commit614562bf2cf048b049af5304fead92a46f080d3e (patch)
treeb228fbd77cc44d948b3998968f2f6d912ad8c2d9 /schema.sql
downloadSensor-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.sql8
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
+);