debian-mirror-gitlab/db/post_migrate/20190918104222_schedule_productivity_analytics_backfill.rb

16 lines
265 B
Ruby
Raw Normal View History

2019-12-04 20:38:33 +05:30
# frozen_string_literal: true
class ScheduleProductivityAnalyticsBackfill < ActiveRecord::Migration[5.2]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
def up
2019-12-26 22:10:19 +05:30
# no-op since the migration was removed
2019-12-04 20:38:33 +05:30
end
def down
# no-op
end
end