Revision a4e7771b2bda7fb77cab0e25ecf1c04d945915f8 authored by Jenkins for Software Heritage on 05 April 2019, 14:43:27 UTC, committed by Jenkins for Software Heritage on 05 April 2019, 14:43:27 UTC
with Debian dir 7e55ec456893f5a7d8dd65a779c8417ea5afcd0f
2 parent s eb66a47 + de805da
Raw File
070.sql
-- SWH DB schema upgrade
-- from_version: 69
-- to_version: 70
-- description: Drop the archiver's related tables in main schema (move to its own database)

INSERT INTO dbversion(version, release, description)
VALUES(70, now(), 'Work In Progress');

DROP TABLE content_archive;

DROP TABLE archives;

DROP TYPE archive_status;

DROP DOMAIN archive_id;
back to top