-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix Integer field overflow in JsonImporter, to handle extreme values …
…coming through from Whitehall via MongoDB
- Loading branch information
1 parent
8c0c135
commit dadcc8d
Showing
2 changed files
with
7 additions
and
2 deletions.
There are no files selected for viewing
5 changes: 5 additions & 0 deletions
5
db/migrate/20231016112610_change_scheduled_publishing_delay_seconds_to_bigint.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
class ChangeScheduledPublishingDelaySecondsToBigint < ActiveRecord::Migration[7.0] | ||
def change | ||
change_column :content_items, :scheduled_publishing_delay_seconds, :bigint | ||
Check failure on line 3 in db/migrate/20231016112610_change_scheduled_publishing_delay_seconds_to_bigint.rb GitHub Actions / Lint Ruby / Run RuboCop
|
||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters