mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-23 15:19:38 +02:00
* Enhance Plaid connection management with re-authentication and error handling - Add support for Plaid item status tracking (good/requires_update) - Implement re-authentication flow for Plaid connections - Handle connection errors and provide user-friendly reconnection options - Update Plaid link token generation to support item updates - Add localization for new connection management states * Remove redundant 'reconnect' localization for Plaid items
5 lines
158 B
Ruby
5 lines
158 B
Ruby
class AddStatusToPlaidItems < ActiveRecord::Migration[7.2]
|
|
def change
|
|
add_column :plaid_items, :status, :string, null: false, default: "good"
|
|
end
|
|
end
|