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

experiment.rb « ml « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7ef9c70ba7ee69fa715642d69bd418cf9a429885 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

module Ml
  class Experiment < ApplicationRecord
    validates :name, :iid, :project, presence: true
    validates :iid, :name, uniqueness: { scope: :project, message: "should be unique in the project" }

    belongs_to :project
    belongs_to :user
    has_many :candidates, class_name: 'Ml::Candidate'
  end
end