https://github.com/SoftwareHeritage/swh-storage
Raw File
Tip revision: 10d367fc863cb5f63ab5ed6fd64fc1855c73845b authored by Jenkins for Software Heritage on 08 February 2022, 09:31:31 UTC
New upstream version 0.43.1
Tip revision: 10d367f
166.sql
-- SWH DB schema upgrade
-- from_version: 165
-- to_version: 166
-- description: add not_found status

insert into dbversion(version, release, description)
      values(166, now(), 'Work In Progress');

alter type origin_visit_state add value 'not_found';
alter type origin_visit_state add value 'failed';
back to top