mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-24 07:39:39 +02:00
* Fix bug: Loan % doesn't allow exact rate Fixes #1487 Change the step of the interest rate field to 0.005. It's unlikely that we'll see interest rates in smaller increments. * step 0.005 * migration for loan interest rates precision * add new line
5 lines
168 B
Ruby
5 lines
168 B
Ruby
class ChangeLoanInterestRatePrecision < ActiveRecord::Migration[7.2]
|
|
def change
|
|
change_column :loans, :interest_rate, :decimal, precision: 10, scale: 3
|
|
end
|
|
end
|