바운스되고 거부된 메일 로그만 지우는 방법은 무엇인가요?
rails 콘솔을 통해 다음을 수행할 수 있습니다
EmailLog.where(bounced: true).destroy_all
좋습니다. 하지만 'rejected’로 대체하면 오류가 발생합니다.
ActiveRecord::StatementInvalid: PG::UndefinedColumn: ERROR: column email_logs.rejected does not exist
아마도 앞으로는 그렇게 작동할 수 있겠지만, 이전에 거절된 항목들은 여전히 남아 있습니다.
