Railsアプリでrailsgeneratemigrationsコマンドを使用してテーブルを作成しました。その移行ファイルは次のとおりです。
class CreateListings < ActiveRecord::Migration
def change
create_table :listings do |t|
t.string :name
t.string :telephone
t.string :latitude
t.string :longitude
t.timestamps
end
end
end
次に、緯度と経度を整数として保存したかったので、実行しようとしました。
rails generate migration changeColumnType
そのファイルの内容は次のとおりです。
class ChangeColumnType < ActiveRecord::Migration
def up
#change latitude columntype from string to integertype
change_column :listings, :latitude, :integer
change_column :listings, :longitude, :integer
#change longitude columntype from string to integer type
end
def down
end
end
列タイプが変更されることを期待していましたが、レーキが中止され、次のエラーメッセージが表示されました。なぜこれが通らなかったのだろうか?私のアプリでpostgresqlを使用しています。
rake db:migrate
== ChangeColumnType: migrating ===============================================
-- change_column(:listings, :latitude, :integer)
rake aborted!
An error has occurred, this and all later migrations canceled:
PG::Error: ERROR: column "latitude" cannot be cast to type integer
: ALTER TABLE "listings" ALTER COLUMN "latitude" TYPE integer
Tasks: TOP => db:migrate
(See full trace by running task with --trace)
注:テーブルにはデータがありません。ありがとう