1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-23 15:19:38 +02:00
Maybe/db/migrate/20241219174803_add_parent_category.rb

7 lines
183 B
Ruby
Raw Normal View History

class AddParentCategory < ActiveRecord::Migration[7.2]
def change
add_column :categories, :parent_id, :uuid
remove_column :categories, :internal_category, :string
end
end