7 lines
186 B
Ruby
7 lines
186 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Exercice < ApplicationRecord
|
|
belongs_to :etablissement, optional: false
|
|
|
|
validates :ca, presence: true, allow_blank: false, allow_nil: false
|
|
end
|