aboutsummaryrefslogtreecommitdiffstats
path: root/schema.sql
blob: 7652fe8022c25a3cf298e28866489cfb98c4ef4b (plain)
1
2
3
4
5
6
7
8
drop table if exists weather;
create table weather (
    id integer primary key autoincrement,
    date timestamp,
    temperature float,
    humidity float,
    pressure float
);