備忘録です
間違っていたら教えてください
ActiveModel::MissingAttributeError (can't write unknown attribute `image`):
imageカラムが書き込めないエラー
###原因
フォームに対する型が違う?
マイグレーションファイル
t.string :image
フォーム入力画面
<%= f.file_field :image, class: 'input-box_image_file',value: "#{@tweet.image}"%>
###修正
型を変更してみる
t.text :image
これでエラー解決しました!