mirror of
https://github.com/we-promise/sure.git
synced 2026-04-19 12:04:08 +00:00
- Create simplefin_items table for SimpleFin connections - Create simplefin_accounts table for account metadata - Add simplefin_account_id to accounts table for linking - Add external_id to transactions for deduplication - Enable encrypted storage of SimpleFin access URLs
7 lines
182 B
Ruby
7 lines
182 B
Ruby
class AddExternalIdToTransactions < ActiveRecord::Migration[7.2]
|
|
def change
|
|
add_column :transactions, :external_id, :string
|
|
add_index :transactions, :external_id
|
|
end
|
|
end
|