12 lines
347 B
Ruby
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
|