LoginSignup
0
1

More than 5 years have passed since last update.

私も画像が投稿できるWebアプリを作りたい。その2(カラムの追加)

Last updated at Posted at 2019-02-23

1.もうできてるテーブルにカラムを追加する

↓を一緒に投稿したい。
タイトル+内容+画像

もうできてるpostテーブルに
imageカラムを追加する。
(imageカラムは写真用)

$ rails g migration AddImageToPosts image:text
                    ①         ②

①クラス名
 後々「なんじゃこりゃ」状態になりたくないので、
ーーーーーーーーーーーーー
1.Add
「付け足しましたよ。」
2.Image
「Imageカラムを」
3.To
「↓の所へ」
4.Posts
「postsテーブルの所へ」

ーーーーーーーーーーーーー

1.image:
カラム名
2.text
 データ型
ーーーーーーーーーーーーー

$ rails db:migrate

つづく

0
1
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
1