This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/db/migrate/20140715190552_remove_uncategorized_parents.rb

12 lines
347 B
Ruby

class RemoveUncategorizedParents < ActiveRecord::Migration
def up
uncat = execute("SELECT value FROM site_settings WHERE name = 'uncategorized_category_id'")
if uncat && uncat[0] && uncat[0]['value']
execute "UPDATE categories SET parent_category_id = NULL where id = #{uncat[0]['value'].to_i}"
end
end
def down
end
end