Files
sure/db/migrate/20241219174803_add_parent_category.rb
Zach Gollwitzer 77def1db40 Nested Categories (#1561)
* Prepare entry search for nested categories

* Subcategory implementation

* Remove caching for test stability
2024-12-20 11:37:26 -05:00

7 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