mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-23 15:19:38 +02:00
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
|