🕌

active_storageのインストール方法

2023/07/30に公開

ActiveStorageとは、Railsで画像の投稿・表示を行うためのもの。

step1

$ rails active_storage:install

step2

$ rails db:migrate

step3

画像を使用するモデルに以下のようなコードを追記。

user.rb

has_one_attached :profile_image

https://zenn.dev/airiin/articles/29fc46ede1d25f

Discussion