移行を次のように変更します
class CreateThing < ActiveRecord::Migration
def change
create_table :things do |t|
t.integer :user_id
t.column :json_data, :json # Edited
t.timestamps
end
add_index :things, :user_id
end
end
そしてデフォルトではrake db
タスクはschema.rb(postgresには当てはまりません)を調べるので、application.rbでそれを
config.active_record.schema_format = :sql