mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-16 20:49:00 -04:00
Round max number limit down
A round number feels better than a very arbitrary-looking one.
This commit is contained in:
@@ -175,7 +175,8 @@ class SMSCode(StringField):
|
||||
|
||||
class ForgivingIntegerField(StringField):
|
||||
|
||||
POSTGRES_MAX_INT = 2147483647
|
||||
# Actual value is 2147483647 but this is a scary looking arbitrary number
|
||||
POSTGRES_MAX_INT = 2000000000
|
||||
|
||||
def __init__(self, label=None, things='items', **kwargs):
|
||||
self.things = things
|
||||
|
||||
Reference in New Issue
Block a user