Để làm cho nó hoạt động với PostgreSQL phiên bản 12, tôi khỉ đã vá lớp PostgreSQLAdapter để thay thế 'hoảng sợ' bằng thông báo 'cảnh báo'. . Tôi phải làm điều này vì dự án của tôi phụ thuộc vào gem activerecord-3.2.22.5
require 'active_record/connection_adapters/postgresql_adapter'
class ActiveRecord::ConnectionAdapters::PostgreSQLAdapter
def set_standard_conforming_strings
old, self.client_min_messages = client_min_messages, 'warning'
execute('SET standard_conforming_strings = on', 'SCHEMA') rescue nil
ensure
self.client_min_messages = old
end
end