LoginSignup
2
1

More than 5 years have passed since last update.

ActiveRecord::Migration で string のカラムをデータごと integer に変換する

Last updated at Posted at 2018-04-05

間違えて string(=varchar) で定義したカラムを、
データのコンバート込みで integer(=int4) にしたい時の小技。

def up
  change_column :reports, :file_size, 'integer USING CAST(file_size AS integer)'
end

def down
  change_column :reports, :file_size, :string
end
2
1
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
1