Actions
Defect #3978
closedBroken CustomValues after 'User groups branch merged' commit @2869
Start date:
2009-10-06
Due date:
% Done:
0%
Estimated time:
Resolution:
Fixed
Affected version:
Description
After commit @2869 user custom values not accessible.
For fix need update table 'custom_values' replace 'customized_type' = 'User' to 'Principal'.
CustomValues.find(:all, :conditions => ['customized_type = ?', 'User']).each do |custom_value|
custom_value.update_attribute(:customized_type, 'Principal')
end
Actions