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

【docker】docker上でrails コマンドを使う【rails】

Posted at

前提

docker でrails アプリを立ち上げて、
Yay! You’re on Rails!を表示できている。

とりあえず"docker compose run web"をつける

例えば、userモデルをdocker上で作りたい場合、

docker compose run web rails g model User user_name:string{64}

おまけ

こんな記述の仕方だと見やすいかも。

% docker compose run web rails g model Product \
product_name:string{64} \
category_id:bigint \
price:integer \
description:string{256} \
sale_status_id:bigint \
product_status_id:bigint \
regist_date:timestamp \
user_id:bigint \
delete_flag:boolean

\ + enterキーで、ターミナル上での改行ができる。
migrationファイル作るときは見やすい。

docker compose run web rails g model モデル名はタイポしないようにしよう。
間違えた名前のファイルができて面倒な事になる。

他は、適宜migrationファイルをいじれば良いのでタイポしてもそこまで影響はない。

2
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
2
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?