Ubah migrasi Anda seperti
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
Dan secara default rake db
tugas akan melihat ke schema.rb (yang tidak akan terjadi pada postgres) jadi di application.rb ubah ke
config.active_record.schema_format = :sql