Answers for "select which db to migrate in rails"

1

using SQL in rails migration

def change
  execute <<-SQL
    UPDATE table1
    SET column1 = "value"
  SQL
end
Posted by: Guest on January-14-2021

Browse Popular Code Answers by Language