1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-19 13:19:39 +02:00
Maybe/db/migrate/20240815190722_remove_warnings_from_sync.rb

6 lines
160 B
Ruby
Raw Normal View History

class RemoveWarningsFromSync < ActiveRecord::Migration[7.2]
def change
remove_column :account_syncs, :warnings, :text, array: true, default: []
end
end