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: 3a3adf18872966186e96d30bd77dc678fe5cacc5 (plain)
1
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
    raise ActiveRecord::IrreversibleMigration
  end
end