gotelem/internal/db/migrations/3_weather_up.sql
saji 9280067d87 db migration fixes
- fix offbyone for executing migrations
- fix user_version setter not working
- add one more migration for WIP weather table
2023-07-06 15:21:41 -05:00

6 lines
134 B
SQL

CREATE TABLE "weather_station_logs" (
"ts" INTEGER NOT NULL,
"wind_speed" REAL,
"ground speed" REAL,
"heading" REAL
);