首先,一些代码会非常好。
其次,你的问题听起来有点像你需要继承。然后你可以得到以下内容:
class Lead
...
end
class Customer < Lead
... # this is your customer, having all the properties of a lead but as well new ones.
end
要将lead
转移到customer
,您可以使用becomes在它们之间进行转移。从我的标签我可以看到,你正在使用Ruby on Rails,所以你想看一下单表继承STI。
希望这有帮助!