How to update column permalink null using permalink_fu in rails console?

Let say i have a table_name article,the column is title and permalink. I want to update only the null permalink.

有帮助吗?

解决方案

I solved the problem.

rails c

Business.where(:permalink =>nil).each(&:save)

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top