summaryrefslogtreecommitdiff
path: root/db/migrate/20150223022001_set_missing_last_activity_at.rb
blob: c77ffbd4ebdd939d5b4e5fee8216249c33da427c (plain)
1
2
3
4
5
6
7
8
class SetMissingLastActivityAt < ActiveRecord::Migration[4.2]
  def up
    execute "UPDATE projects SET last_activity_at = updated_at WHERE last_activity_at IS NULL"
  end

  def down
  end
end