如何運行Sequel遷移,使用行中的值更新新添加的列?續集遷移更新與一行的ID
續集文檔顯示如何更新一個靜態值的列:
self[:artists].update(:location=>'Sacramento')
我需要做的就是更新與ID列的值的新列:
像這樣:
self[:artists].each |artist| do
artist.update(:location => artist[:id])
end
但上述不起作用,我一直無法弄清楚如何去得到它。
謝謝!
太棒了,謝謝傑里米。沒有意識到我可以通過列名作爲符號。 –