При создании индекса добавьте предложение where

#ruby-on-rails #postgresql

#ruby-on-rails #postgresql

Вопрос:

У меня есть сценарий миграции БД на ruby.

Как добавить предложение where в сценарий миграции

 unless index_exists?(:hotel_room_types, [:hotel_id, :dynamic_price_from])
      add_index :hotel_room_types, [:hotel_id, :dynamic_price_from], 
      unique: true, where: (status =1), name: 'by_hotel_id_from'
 end

PG::DatatypeMismatch: ERROR:  argument of WHERE must be type boolean, not type integer
 

СТРОКА 1: …otel_room_types» («hotel_id», «dynamic_price_from»), ГДЕ 1

Ответ №1:

Иметь в where виде строки

 add_index :hotel_room_types, [:hotel_id, :dynamic_price_from], 
  unique: true, where: 'status = 1', name: 'by_hotel_id_from'