Add data migrations for bulk extracts

This commit is contained in:
Maciej Ziarkowski 2019-08-29 12:01:41 +01:00
parent 2127521094
commit 0dee6ae167
2 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1 @@
DROP TABLE IF EXISTS bulk_extracts;

View File

@ -0,0 +1,5 @@
CREATE TABLE IF NOT EXISTS bulk_extracts (
extract_id serial PRIMARY KEY,
extracted_on timestamp NOT NULL,
extract_path text NOT NULL
);