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