Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20150223022001_set_missing_last_activity_at.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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