Skip to content

Commit 4712869

Browse files
wedamijaandrewshie-sentry
authored andcommitted
fix(migrations): Actually fix BoundedPositiveBigIntegerField (#83431)
Third time's the charm! <!-- Describe your PR here. -->
1 parent e903d40 commit 4712869

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sentry/db/models/fields/bounded.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ class BoundedPositiveBigIntegerField(models.PositiveBigIntegerField):
6666
MAX_VALUE = 9223372036854775807
6767

6868
def get_internal_type(self) -> str:
69-
return "BigIntegerField"
69+
return "PositiveBigIntegerField"
7070

7171
def get_prep_value(self, value: int) -> int:
7272
if value:

0 commit comments

Comments
 (0)