I want to modified django third party model. Here the original code.
default_price = models.DecimalField(
decimal_places=2, max_digits=7,
null=True, blank=True,
verbose_name=_("Default price"),
)
I want to change max_digits=7
to max_digits=9
, so it becomes:
default_price = models.DecimalField(
decimal_places=2, max_digits=9,
null=True, blank=True,
verbose_name=_("Default price"),
)
Is it possible to modified django third party model without directly touch original third party code or fork?
Thanks