From 614562bf2cf048b049af5304fead92a46f080d3e Mon Sep 17 00:00:00 2001 From: Matt Kohls Date: Mon, 11 Apr 2016 23:53:38 -0400 Subject: Initial Commit. Basic webapp that can save/display weather data --- schema.sql | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 schema.sql (limited to 'schema.sql') 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 +); -- cgit v1.2.3