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

project_stage.rb « cycle_analytics « analytics « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 88c8cb40ccbe454588613d91a8cbf0cead840543 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module Analytics
  module CycleAnalytics
    class ProjectStage < ApplicationRecord
      belongs_to :project
    end
  end
end