0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

ActiveStorageついて

Posted at

初めに

Rails使いの皆さん、こんばんは!
ActiveStorageってご存じですか??
簡単に説明すると、
Railsで画像の投稿や表示を行うための物です。
画像は通常のカラムとして保存できないので、特別な保存方法が必要です。
それを行うのがActiveStorageです。

早速学んでいきましょうか!

ActiveStorage導入の流れ

ActiveStorageをインストールします。ターミナルにこちらを入力

rails active_storage:install

そうすると、db/migrateディレクトリ内に
ActiveStorageのマイグレーションファイルが追加されます。

その次に
以下のコマンドをターミナルに書き込みます。

rails db:migrate

これで導入完成です!

終わりに

今回はActiveStorageについて学びました。
今後も、理解を深めるためにガンガン投稿していきます!

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?