mirror of https://github.com/django/django.git
Refs #31039 -- Removed unnecessary registration of contained_by lookup for BigIntegerField.
It's already registered for IntegerField.
This commit is contained in:
parent
6410d38ca7
commit
664521c56a
|
@ -225,7 +225,6 @@ class RangeContainedBy(lookups.PostgresSimpleLookup):
|
|||
models.DateField.register_lookup(RangeContainedBy)
|
||||
models.DateTimeField.register_lookup(RangeContainedBy)
|
||||
models.IntegerField.register_lookup(RangeContainedBy)
|
||||
models.BigIntegerField.register_lookup(RangeContainedBy)
|
||||
models.FloatField.register_lookup(RangeContainedBy)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue