0

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.

Marcelo Austria
  • 861
  • 8
  • 16

1 Answers1

0

I solved the problem.

rails c

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

Community
  • 1
  • 1
Marcelo Austria
  • 861
  • 8
  • 16