mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-21 14:19:39 +02:00
6 lines
229 B
Ruby
6 lines
229 B
Ruby
class RemoveDefaultFromAccountBalance < ActiveRecord::Migration[7.2]
|
|
def change
|
|
change_column_default :accounts, :balance, from: "0.0", to: nil
|
|
change_column_default :accounts, :currency, from: "USD", to: nil
|
|
end
|
|
end
|