mirror of
https://github.com/we-promise/sure.git
synced 2026-04-07 14:31:25 +00:00
* Prepare entry search for nested categories * Subcategory implementation * Remove caching for test stability
7 lines
183 B
Ruby
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
|