sadem_app/app/models/m_odr_rep_rib.rb
Nicolas Bally 6c27e12a7e suite
2020-03-03 01:36:04 +01:00

18 lines
317 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
has_many :mail_hists, :as => :element
end