aboutsummaryrefslogtreecommitdiffstats
path: root/schema.sql
diff options
context:
space:
mode:
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
+);