mirror of
https://github.com/we-promise/sure.git
synced 2026-04-18 19:44:09 +00:00
* Fix pattern identification without merchants - We already support the schema and data, but pattern identification now groups either per merchant or per transaciton name. * Fix missed this view * Fix update schema * Wrong schema pushed
6 lines
167 B
Ruby
6 lines
167 B
Ruby
class AddNameToRecurringTransactions < ActiveRecord::Migration[7.2]
|
|
def change
|
|
add_column :recurring_transactions, :name, :string, if_not_exists: true
|
|
end
|
|
end
|