Method: ActiveRecord::ConnectionAdapters::PostgreSQL::SchemaStatements#client_min_messages=

Defined in:
activerecord/lib/active_record/connection_adapters/postgresql/schema_statements.rb

#client_min_messages=(level) ⇒ Object

Set the client message level.



296
297
298
# File 'activerecord/lib/active_record/connection_adapters/postgresql/schema_statements.rb', line 296

def client_min_messages=(level)
  internal_execute("SET client_min_messages TO '#{level}'", "SCHEMA")
end