Add iban type de champ

This commit is contained in:
kara Diaby 2020-09-22 16:04:57 +02:00
parent a7e4720d0d
commit cb4e91c405
15 changed files with 72 additions and 1 deletions

View file

@ -0,0 +1,19 @@
# == Schema Information
#
# Table name: champs
#
# id :integer not null, primary key
# private :boolean default(FALSE), not null
# row :integer
# type :string
# value :string
# created_at :datetime
# updated_at :datetime
# dossier_id :integer
# etablissement_id :integer
# parent_id :bigint
# type_de_champ_id :integer
#
class Champs::IbanChamp < Champ
validates_with IbanValidator
end