One way is to manually set the type column:
obj[:type] = Class2 obj.save
Chris
One way is to manually set the type column:
obj[:type] = Class2 obj.save
Chris
You might need to use update_attribute to avoid validation checking on save...
BaseClass.find(<id>).update_attribute(:type, Class1)