debian-mirror-gitlab/lib/gitlab/database/schema_validation/schema_objects/index.rb

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

16 lines
250 B
Ruby
Raw Normal View History

2023-05-27 22:25:52 +05:30
# frozen_string_literal: true
module Gitlab
module Database
module SchemaValidation
module SchemaObjects
class Index < Base
def name
parsed_stmt.idxname
end
end
end
end
end
end