mirror of
https://github.com/we-promise/sure.git
synced 2026-04-13 17:14:05 +00: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
|