Skip to content
Snippets Groups Projects
Commit 5432f51d authored by Antoine Lambert's avatar Antoine Lambert
Browse files

sql/upgrades: Fix typo spotted after codespell upgrade

parent 177d2a5b
No related branches found
No related tags found
No related merge requests found
Pipeline #10589 passed
...@@ -14,7 +14,7 @@ create table checked_range ...@@ -14,7 +14,7 @@ create table checked_range
comment on table checked_range is 'Each row represents a range of objects in a datastore that were fetched, checksummed, and checked at some point in the past.'; comment on table checked_range is 'Each row represents a range of objects in a datastore that were fetched, checksummed, and checked at some point in the past.';
comment on column checked_range.range_start is 'First SWHID of the range that was checked (inclusive, possibly non-existent).'; comment on column checked_range.range_start is 'First SWHID of the range that was checked (inclusive, possibly non-existent).';
comment on column checked_range.range_end is 'Last SWHID of the range that was checked (inclusive, possiby non-existent).'; comment on column checked_range.range_end is 'Last SWHID of the range that was checked (inclusive, possibly non-existent).';
comment on column checked_range.last_date is 'Date the last scrub of that range *started*.'; comment on column checked_range.last_date is 'Date the last scrub of that range *started*.';
create unique index concurrently checked_range_pkey on checked_range(datastore, range_start, range_end); create unique index concurrently checked_range_pkey on checked_range(datastore, range_start, range_end);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment