Changes between Initial Version and Version 1 of Ticket #36031, comment 3
- Timestamp:
- Dec 24, 2024, 1:43:16 AM (4 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #36031, comment 3
initial v1 1 1 I think the mentioned cause is correct. Note that [https://github.com/django/django/blob/fcd9d08379a2aee3b2c49eab0d0b8db6fd66d091/django/db/backends/postgresql/base.py#L104] maps to the column type to "numeric(%(max_digits)s, %(decimal_places)s)", and the fields are populated here [https://github.com/django/django/blob/fcd9d08379a2aee3b2c49eab0d0b8db6fd66d091/django/db/models/fields/__init__.py#L886]. 2 2 3 Though I am not sure of a way to fix this, but would be happy to open a PR if given direction.