PostgresSQLでrake specするとNOTICEがいっぱいでる

NOTICE:  CREATE TABLE will create implicit sequence "peroperos_id_seq" for serial column "peroperos.id"
NOTICE:  CREATE TABLE / PRIMARY KEY will create implicit index "peroperos_pkey" for table "peroperos"
〜略〜

database.ymlに書いてあるけどmin_messagesの値を変更すれば出力するレベルを替えられる

  # Minimum log levels, in increasing order:
  #   debug5, debug4, debug3, debug2, debug1,
  #   log, notice, warning, error, fatal, and panic
  # The server defaults to notice.
  #min_messages: warning

こんな感じにした

test:
  adapter: postgresql
  encoding: unicode
  database: homu_test
  pool: 5
  username: postgres
  password:
  min_messages: warning