sadem_app/app/models/m_odr_rep_rib.rb
Nicolas Bally 2e982b4fd2 suite
2020-02-27 13:51:18 +01:00

14 lines
268 B
Ruby

class MOdrRepRib < ApplicationRecord
belongs_to :admin
belongs_to :m_odr_rep
has_one :m_odr, :through => :m_odr_rep
validates :bic, :presence => true, length: { in: 8..11 }
validates :iban, :presence => true
validates_with IbanValidator
end