summaryrefslogtreecommitdiff
path: root/app/models/ml/experiment.rb
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