Skip to content
This repository has been archived by the owner on Feb 14, 2024. It is now read-only.

Commit

Permalink
Updated value to bigint, due to the large size of breaches
Browse files Browse the repository at this point in the history
Some breaches are in the millions or even billions, so to make sure we can capture the whole value, it should be a big int instead of an integer datatype
  • Loading branch information
DJensen94 committed Sep 23, 2021
1 parent bc8d468 commit 8b0f0bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pe_reports/data/data_schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ CREATE TABLE IF NOT EXISTS public.hibp_breaches
breach_id uuid NOT NULL,
breach_name text NOT NULL
description text,
exposed_cred_count integer,
exposed_cred_count bigint,
breach_date date,
added_date timestamp without time zone,
modified_date timestamp without time zone,
Expand Down

0 comments on commit 8b0f0bc

Please sign in to comment.