我在我的项目中使用过rails 4和postgresql 9.4。当我运行“rdd&& rdc&& rdm&& rds”时我得到了这个错误 PG :: UndefinedObject:错误:键入“jsonb”不存在如何解决此错误?告诉我。
我的迁移文件:
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
感谢您的帮助!
答案 0 :(得分:7)
检查您是否已连接到正在开发的Postgres实例。
rails console
ActiveRecord::Base.connection.execute("select version();").first["version"]
如果您确定自己运行的是9.4,那么可能是您运行了两台Postgres服务器。一个9.4,一个较旧的。
我遇到了这个问题并编辑了我的database.yml并指定了host: 'localhost'
。