BigW Consortium Gitlab

20150223022001_set_missing_last_activity_at.rb 211 Bytes
Newer Older
1
# rubocop:disable all
2 3 4 5 6 7 8 9
class SetMissingLastActivityAt < ActiveRecord::Migration
  def up
    execute "UPDATE projects SET last_activity_at = updated_at WHERE last_activity_at IS NULL"
  end

  def down
  end
end