Skift din migrering som
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
Og som standard rake db
opgaver vil se på schema.rb (hvilket ikke er tilfældet for postgres), så i application.rb ændres det til
config.active_record.schema_format = :sql