mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-08-05 05:25:24 +02:00
Nested Categories (#1561)
* Prepare entry search for nested categories * Subcategory implementation * Remove caching for test stability
This commit is contained in:
parent
a4d10097d5
commit
77def1db40
31 changed files with 297 additions and 234 deletions
6
db/migrate/20241219174803_add_parent_category.rb
Normal file
6
db/migrate/20241219174803_add_parent_category.rb
Normal file
|
@ -0,0 +1,6 @@
|
|||
class AddParentCategory < ActiveRecord::Migration[7.2]
|
||||
def change
|
||||
add_column :categories, :parent_id, :uuid
|
||||
remove_column :categories, :internal_category, :string
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue