36
psql --version
psql (PostgreSQL) 9.4.1

rails -v
Rails 4.2.0

そのような移行を通じてjsonb列を追加しました

class AddPreferencesToUsers < ActiveRecord::Migration
  def change
    add_column :users, :preferences, :jsonb, null: false, default: '{}'
    add_index :users, :preferences, using: :gin
  end
end

このエラーが発生します:

PG::UndefinedObject: ERROR:  type "jsonb" does not exist
LINE 1: SELECT 'jsonb'::regtype::oid

何か助けはありますか?

4

1 に答える 1