2016-06-16 23:09:34 +05:30
|
|
|
# rubocop:disable all
|
2015-04-26 12:48:37 +05:30
|
|
|
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
|