У меня есть следующее поле в дБ, создать с использованием текущих сущностей
@NotNull
@Column(name = "own_amount", precision = 21, scale = 4, nullable = false)
private BigDecimal ownAmount;
Liquibase CSV
id;own_amount
1;37454
Ошибка
ERROR: column "own_amount" is of type numeric but expression is of type character varying
How to fix this