https://github.com/SoftwareHeritage/swh-storage
Raw File
Tip revision: 2b20af5a2ac00047e2d22b55f375f5069078e190 authored by Jenkins for Software Heritage on 29 April 2021, 13:04:39 UTC
New upstream version 0.27.4
Tip revision: 2b20af5
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