mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-21 06:09:38 +02:00
* Rough draft of issue system * Simplify design * Remove stale files from merge conflicts * STI for issues * Cleanup * Improve Synth api key flow * Stub api key for test
5 lines
160 B
Ruby
5 lines
160 B
Ruby
class RemoveWarningsFromSync < ActiveRecord::Migration[7.2]
|
|
def change
|
|
remove_column :account_syncs, :warnings, :text, array: true, default: []
|
|
end
|
|
end
|