debian-mirror-gitlab/db/migrate/20150223022001_set_missing_last_activity_at.rb

9 lines
194 B
Ruby
Raw Normal View History

2019-02-15 15:39:39 +05:30
class SetMissingLastActivityAt < ActiveRecord::Migration[4.2]
2015-04-26 12:48:37 +05:30
def up
execute "UPDATE projects SET last_activity_at = updated_at WHERE last_activity_at IS NULL"
end
def down
end
end