debian-mirror-gitlab/lib/gitlab/database/schema_validation/schema_objects/index.rb
2023-05-27 22:25:52 +05:30

15 lines
250 B
Ruby

# 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