14 lines
323 B
Ruby
14 lines
323 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class AddOldestMergeRequestsIndex < ActiveRecord::Migration[6.0]
|
||
|
DOWNTIME = false
|
||
|
|
||
|
def up
|
||
|
# replaced by db/migrate/20210201140434_add_oldest_merge_requests_index_again.rb
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
# replaced by db/migrate/20210201140434_add_oldest_merge_requests_index_again.rb
|
||
|
end
|
||
|
end
|