LoginSignup
2
3

More than 1 year has passed since last update.

Ruby on Rails—テーブルカラムにコメントを追加するマイグレーション

Last updated at Posted at 2018-08-01

マイグレーションファイルの例

  class AddUsersComments < ActiveRecord::Migration[5.1]
  def up
    change_column :users, :first_name, :string, comment: "This is first name of user"
  end

  def down
    change_column :users, :first_name, :string, comment: nil
  end
end

環境

  • activerecord (5.1.6)
  • Rails 5.1.6

Gist

チャットメンバー募集

何か質問、悩み事、相談などあればLINEオープンチャットもご利用ください。

Twitter

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