VRFS-349: added table for storing raw isp scoring data

This commit is contained in:
Jonathan Kolyer 2013-06-08 17:50:10 -05:00
parent 00868fe3b5
commit 27d94a0ba8
2 changed files with 6 additions and 0 deletions

View File

@ -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

5
up/isp_score_batch.sql Normal file
View File

@ -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
);