Created
September 2, 2021 03:59
-
-
Save andrewdoss-bit/c33fdec42f790b438a04f56627e2dcd2 to your computer and use it in GitHub Desktop.
Create pm table
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Aligns with logged columns in config.yaml | |
-- Update the first line with your table name | |
CREATE TABLE "air_quality_log_test/air_quality"."pm_measurements" ( | |
"datetime" timestamp with time zone, | |
"location" text, | |
"sensor_id" integer, | |
"pm_2_5" real, | |
"pm_10" real | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment