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: 3f6d4d83474f639fa4fdfa102576051b020c76f4 (plain)
1
2
3
4
5
6
7
8
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