🕌
active_storageのインストール方法
ActiveStorageとは、Railsで画像の投稿・表示を行うためのもの。
step1
$ rails active_storage:install
step2
$ rails db:migrate
step3
画像を使用するモデルに以下のようなコードを追記。
user.rb
has_one_attached :profile_image
ActiveStorageとは、Railsで画像の投稿・表示を行うためのもの。
$ rails active_storage:install
$ rails db:migrate
画像を使用するモデルに以下のようなコードを追記。
user.rb
has_one_attached :profile_image
Discussion