VRFS-349: added table for storing raw isp scoring data
This commit is contained in:
parent
00868fe3b5
commit
27d94a0ba8
1
manifest
1
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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
);
|
||||
Loading…
Reference in New Issue