3scale/porta

View on GitHub
db/migrate/20230308155529_backfill_titles_cms_sections.rb

Summary

Maintainability
A
0 mins
Test Coverage
class BackfillTitlesCMSSections < ActiveRecord::Migration[5.2]
  def up
    CMS::Section.unscoped.where(title: ['', nil]).update_all("title = system_name")
  end
end