diff --git a/manifest b/manifest index d8f1b3118..dd12be2d7 100755 --- a/manifest +++ b/manifest @@ -68,3 +68,4 @@ max_mind_isp.sql other_instrument.sql max_mind_isp_add_country.sql avatar_using_filepicker.sql +isp_score_batch.sql diff --git a/up/isp_score_batch.sql b/up/isp_score_batch.sql new file mode 100644 index 000000000..6475fb585 --- /dev/null +++ b/up/isp_score_batch.sql @@ -0,0 +1,5 @@ +CREATE TABLE isp_score_batch( + id VARCHAR(64) PRIMARY KEY DEFAULT uuid_generate_v4(), + json_scoring_data TEXT NOT NULL, + created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP +);