문제

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