1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-08-05 13:35:21 +02:00
Maybe/db/migrate/20241219151540_add_region_to_plaid_item.rb
Josh Pigford 4bf72506d5
Initial pass at Plaid EU (#1555)
* Initial pass at Plaid EU

* Add EU support to Plaid Items

* Lint

* Temp fix for rubocop isseus

* Merge cleanup

* Pass in region and get tests passing

* Use absolute path for translation

---------

Signed-off-by: Josh Pigford <josh@joshpigford.com>
2025-01-31 12:13:58 -06:00

5 lines
161 B
Ruby

class AddRegionToPlaidItem < ActiveRecord::Migration[7.2]
def change
add_column :plaid_items, :plaid_region, :string, null: false, default: "us"
end
end