simple_form では、次の方法でコレクションを選択できます。
= simple_form_for @document do |document|
= f.input :name
= f.input :type, collection: DocumentType.all, include_blank: false
これはデフォルトで DocumentTypes :idになり、ドキュメントの:type属性に保存されます。
DocumentType のどの属性を使用するかを simple_form にどのように伝えますか?