LoginSignup
5
6

More than 5 years have passed since last update.

[rails]カラムの型変更

Posted at

既存のテーブルのカラムの型を変更したい

既存のテーブルにあるカラムの型を間違えてstring型で作成してしまった。
型だけ変更したかった時に見つけたのでメモがわりに残しておく。

$rails g migration change_data_title_to_article

空のmigrationファイルを作成したら、

def change
  change_column :article, :title, :text
end

これでrails db:migrateで型が修正できる。

5
6
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
5
6