0
1

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.

[Rails]モデルに関するよく使うコマンド集

Last updated at Posted at 2020-04-23

背景

モデルのコマンドはよく使うため備忘録として書き残す。

モデルのよく使うコマンド


$ rails g model モデル名 カラム名:
# モデルの作成コマンド

$ rails d model モデル名
# モデルの削除コマンド

$ rails g migration add_カラム名_to_テーブル名 カラム名:
# カラムの追加コマンド

$ rails g migration remove_カラム名_from_テーブル名 カラム名:
# カラムの削除コマンド

$ rails db:migrate
# マイグレーション実行コマンド

$ rails db:rollback
# 直近のマイグレーションファイルを実行前に戻す

$ rails db:rollback STEP=
# 任意の数だけ前のマイグレーションファイルを実行前に戻す

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?