LoginSignup
1
2

More than 5 years have passed since last update.

データベースのテーブルにカラムを追加する(Rails)

Posted at

対象

  • Ruby on Railsのデータベースをいじりたい
  • RailsでDBを操作するコマンドを忘れた

既存のテーブルにカラムを追加する場合、migrationスクリプトを作成する

マイグレーションスクリプトを作成

rails generate migration Add(カラム名)To(テーブル名) (カラム名):(型名)
ex)rails generate migration AddAuthor_idToBlogposts author_id:string

マイグレーションの実行

rake db:migrate
1
2
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
1
2