Skip to content

Commit

Permalink
Change num_urls_checked to bigint as it can easily overflow 2^31
Browse files Browse the repository at this point in the history
  • Loading branch information
AMDmi3 committed Dec 19, 2024
1 parent 38405ac commit 838c205
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sql.d/schema/create_schema_tables.sql
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@ CREATE TABLE statistics (
num_metapackages integer NOT NULL DEFAULT 0,
num_problems integer NOT NULL DEFAULT 0,
num_maintainers integer NOT NULL DEFAULT 0,
num_urls_checked integer NOT NULL DEFAULT 0,
num_urls_checked bigint NOT NULL DEFAULT 0
num_reports_total integer NOT NULL DEFAULT 0,
num_reports_open integer NOT NULL DEFAULT 0
);
Expand Down

0 comments on commit 838c205

Please sign in to comment.