mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-28 01:29:39 +02:00
9 lines
231 B
Ruby
9 lines
231 B
Ruby
|
class AddMerchantLogo < ActiveRecord::Migration[7.2]
|
||
|
def change
|
||
|
add_column :merchants, :icon_url, :string
|
||
|
add_column :merchants, :enriched_at, :datetime
|
||
|
|
||
|
add_column :account_entries, :enriched_at, :datetime
|
||
|
end
|
||
|
end
|