appirits/comable

View on GitHub
core/db/migrate/20150805074914_add_published_at_to_comable_products.rb

Summary

Maintainability
A
0 mins
Test Coverage
class AddPublishedAtToComableProducts < ActiveRecord::Migration
  def change
    change_table :comable_products do |t|
      t.datetime :published_at
    end

    Comable::Product.update_all(published_at: (Rails::VERSION::MAJOR == 3) ? Date.today.to_time_in_current_zone : Date.today.in_time_zone) unless reverting?
  end
end