1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-24 15:49:39 +02:00
Maybe/db/migrate/20250509182903_dynamic_last_synced.rb
Zach Gollwitzer ab2cec55e7
Propagate child sync errors up to parent, fix sync status (#2232)
* Propagate child sync errors up to parent, fix sync status

* Remove testing error
2025-05-09 14:56:49 -04:00

7 lines
249 B
Ruby

class DynamicLastSynced < ActiveRecord::Migration[7.2]
def change
remove_column :plaid_items, :last_synced_at, :datetime
remove_column :accounts, :last_synced_at, :datetime
remove_column :families, :last_synced_at, :datetime
end
end