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

rails db関係でよく使用するコマンド

Posted at

##基本のマイグレーションファイルとモデル作成
マイグレーションファイル rails g migration クラス名
モデル  rails generate model モデル名 カラム名:データ型

命名規則
クラス名 アクション_テーブル名 ex)create_users
モデル名 大文字 + 単数   ex)User

##基本コマンド
データベースにマイグレーションファイルを反映する rails db:migrate
drop(db削除)create(db生成) migrate(反映)を行ってくれる rails db:migrate:reset
現在の状況確認rake db:version
一つ前のマイグレーションを無かったことにするrails db:rollback

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?