プロジェクトで Rails 4 と postgresql 9.4 を使用しました。「rdd && rdc && rdm && rds」を実行したところ、このエラーが発生しましたPG::UndefinedObject: ERROR: type "jsonb" does not existどうすればこのエラーを解決できますか? 教えて。
私の移行ファイル:
class CreateConsultingLocationDoctorSchedules < ActiveRecord::Migration
def change
create_table :consulting_location_doctor_schedules do |t|
t.belongs_to :consulting_location_doctor
t.datetime :schedule_date, null: false
t.jsonb :slot_details, index: true, default: {}
t.daterange :start_and_end_time, null: false
t.datetime :deleted_at
t.belongs_to :deleted_by
t.timestamps
end
end
end
助けてくれてありがとう!