You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
197 B

  1. def migrate(cr, version):
  2. if not version:
  3. return
  4. cr.execute(
  5. "UPDATE ir_mail_server "
  6. "SET reply_to_method = 'alias' "
  7. "WHERE reply_to_alias IS TRUE"
  8. )