fiedl/your_platform

View on GitHub
demo_app/my_platform/db/migrate/20170713234117_make_all_previous_pages_published.your_platform.rb

Summary

Maintainability
A
0 mins
Test Coverage
# This migration comes from your_platform (originally 20170713233845)
class MakeAllPreviousPagesPublished < ActiveRecord::Migration[4.2]
  def up
    Page.connection.execute "update pages as p set p.published_at = p.created_at where true"
  end
  def down
  end
end