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 5 years have passed since last update.

【Rails】rails g migrationコマンドのオプションで注意したいこと

Posted at

ターミナルでrails g migrationコマンドを実行する際に、オプションとして**「カラム名:データ型」**を付け加える際には必ず:(コロン)の直後にはスペースを入れないようにする!

terminal

rails g migration add_user_id_to_posts user_id: integer
                                               ⬆️
                                              半角スペースを開けない!

上記のように「user_id:」の直後に半角のスペースを入れてしまうと、余計なカラムが作成されてしまうエラーが発生する為。

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?