Skip to content

Commit

Permalink
Fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
jchester committed Aug 4, 2024
1 parent e482493 commit 1998781
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sql/postgresql/01-data-schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ create table spc_data.samples (
create table spc_data.measurements (
id bigint generated by default as identity primary key,
sample_id bigint references spc_data.samples (id) not null,
performed_at timestamptz not null,
performed_at timestamptz not null,
measured_value decimal not null,

unique (performed_at, sample_id)
Expand Down

0 comments on commit 1998781

Please sign in to comment.