Welcome to mirror list, hosted at ThFree Co, Russian Federation.

trigger.rb « schema_objects « schema_validation « database « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 508e6b27ed3e9132b8a3227792c7d36cf4ed9659 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

module Gitlab
  module Database
    module SchemaValidation
      module SchemaObjects
        class Trigger < Base
          def name
            parsed_stmt.trigname
          end
        end
      end
    end
  end
end