Created
August 26, 2018 20:59
-
-
Save danielfone/58618b2bf2e2ea77b76ebb8606b243a1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Create table to hold raw imported data | |
-- | |
DROP TABLE IF EXISTS imported_reports; | |
CREATE TABLE imported_reports ( | |
reference varchar primary key, | |
project_reference varchar, | |
project_name varchar, | |
version varchar, | |
generation_time varchar, | |
-- etc | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment