mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-22 22:59:39 +02:00
* Prepare entry search for nested categories * Subcategory implementation * Remove caching for test stability
6 lines
183 B
Ruby
6 lines
183 B
Ruby
class AddParentCategory < ActiveRecord::Migration[7.2]
|
|
def change
|
|
add_column :categories, :parent_id, :uuid
|
|
remove_column :categories, :internal_category, :string
|
|
end
|
|
end
|