11 lines
156 B
Ruby
11 lines
156 B
Ruby
# frozen_string_literal: true
|
|
|
|
class BackfillProjectsWithCoverage < ActiveRecord::Migration[6.1]
|
|
def up
|
|
# noop
|
|
end
|
|
|
|
def down
|
|
# noop
|
|
end
|
|
end
|