debian-mirror-gitlab/app/models/ml/experiment.rb
2022-08-27 11:52:29 +05:30

12 lines
345 B
Ruby

# 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