Add data migrations for bulk extracts
This commit is contained in:
parent
2127521094
commit
0dee6ae167
1
migrations/011.bulk-extracts.down.sql
Normal file
1
migrations/011.bulk-extracts.down.sql
Normal file
@ -0,0 +1 @@
|
||||
DROP TABLE IF EXISTS bulk_extracts;
|
5
migrations/011.bulk-extracts.up.sql
Normal file
5
migrations/011.bulk-extracts.up.sql
Normal 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
|
||||
);
|
Loading…
Reference in New Issue
Block a user