Files
sure/db/migrate/20250807144857_add_external_id_to_transactions.rb
Sholom Ber 9561e73e17 Add SimpleFin database schema
- 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
2025-08-07 12:39:15 -04:00

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