mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-23 23:29:39 +02:00
7 lines
229 B
Ruby
7 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
|