gitlab-org--gitlab-foss/db/post_migrate/20211217145923_add_index_to...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
254 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddIndexToEventsOnAuthorIdAndActionAndId < Gitlab::Database::Migration[1.0]
# no-op
# see: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/77436
def up
# no-op
end
def down
# no-op
end
end