Я планирую иметь следующую таблицу в Postgres
create table Transaction (
tax_amount decimal
);
Я не хочу указывать конкретное количество цифр явно.
Для модели Django я использую
tax_amount = models.DecimalField(blank=True, null=True)
Я получаю ошибку
billing.Transaction.tax_amount: (fields.E130) DecimalFields must define a 'decimal_places' attribute.
billing.Transaction.tax_amount: (fields.E132) DecimalFields must define a 'max_digits' attribute.
Мне было интересно, как я могу перевести Django на эквивалентный Postgres SQL, не упоминая явно decimal_places
и max_digits
?