LoginSignup
0
0

More than 1 year has passed since last update.

Rails データカラムの変更方法

Posted at
$ rails g migration change_data_[カラム名]_to_[テーブル名]

実行するとマイグレーションファイルが作成されるので

def change
  change_column :テーブル名, :カラム名, :
end

を記入

rails db:migrate

で変更完了。
Sequel Proなどを使用して、視覚的に確認して、変更されていた。

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