mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-27 09:09:41 +02:00
6 lines
168 B
Ruby
6 lines
168 B
Ruby
|
class ChangeLoanInterestRatePrecision < ActiveRecord::Migration[7.2]
|
||
|
def change
|
||
|
change_column :loans, :interest_rate, :decimal, precision: 10, scale: 3
|
||
|
end
|
||
|
end
|