* 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
6 lines
160 B
Ruby
6 lines
160 B
Ruby
class RemoveWarningsFromSync < ActiveRecord::Migration[7.2]
|
|
def change
|
|
remove_column :account_syncs, :warnings, :text, array: true, default: []
|
|
end
|
|
end
|