Skip to content

Commit

Permalink
fix typo in comment
Browse files Browse the repository at this point in the history
  • Loading branch information
intarga committed Jan 29, 2025
1 parent c562cd5 commit eee9021
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions db/public.sql
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ CREATE TABLE IF NOT EXISTS public.data (
timeseries INT4 NOT NULL,
obstime TIMESTAMPTZ NOT NULL,
obsvalue REAL,
-- This value should be treated as an absolute assertion of the data's quality but rather our
-- current knowlege of it. `true` here indicates that the datum has not failed any QC pipelines
-- (including if none have been run at all). Users that have specific requirements for what QC
-- has been performed on the data should refer to the information in the
-- This value should not be treated as an absolute assertion of the data's quality but rather
-- our current knowlege of it. `true` here indicates that the datum has not failed any QC
-- pipelines (including if none have been run at all). Users that have specific requirements
-- for what QC has been performed on the data should refer to the information in the
-- `flags.confident_provenance` table.
qc_usable BOOLEAN NOT NULL DEFAULT TRUE,
CONSTRAINT unique_data_timeseries_obstime UNIQUE (timeseries, obstime),
Expand Down

0 comments on commit eee9021

Please sign in to comment.