Thay đổi quá trình di chuyển của bạn như
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
Và theo mặc định rake db
các tác vụ sẽ xem xét trong schema.rb (sẽ không xảy ra với postgres) vì vậy trong application.rb hãy thay đổi nó thành
config.active_record.schema_format = :sql