Posts by rafaelfranca • 116 points
1 post
-
0
votes1
answer60
viewsA: Error "must exist" when creating registration in Rails 5.2
You probably have this error because in select for the :contact_id the id is missing from the collection. f.input :contact_id, :as => :select, :collection => Contact.all.collect {|contact|…