This is an automated email from the ASF dual-hosted git repository. btellier pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/james-project.git
commit 7f17df7a62b6883b5050dccd2211661fdab4e4d6 Author: Quan Tran <[email protected]> AuthorDate: Thu Dec 1 17:41:30 2022 +0700 JAMES-3754 Cassandra tables upgrade instructions --- upgrade-instructions.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/upgrade-instructions.md b/upgrade-instructions.md index 31e61f6041..074934a1fe 100644 --- a/upgrade-instructions.md +++ b/upgrade-instructions.md @@ -23,6 +23,23 @@ Change list: - [SortOrder addition in Identity](#sortorder-addition-in-identity) - [TLS host name verification is now enabled by default](#tls-host-name-verification-is-now-enabled-by-default) - [Blob Store AES upgraded to PBKDF2WithHmacSHA512](#blob-store-aes-upgraded-to-pbkdf2withhmacsha512) +- [Adding saveDate column to messageIdTable and imapUidTable](#adding-savedate-column-to-messageidtable-and-imapuidtable) + +### Adding saveDate column to messageIdTable and imapUidTable + +Date 01/12/2022 + +JIRA: https://issues.apache.org/jira/browse/JAMES-3754 + +Concerned product: Distributed James, Cassandra James Server + +Add `save_date` column to `messageIdTable` and `imapUidTable` tables in order to store saveDate data as part of IMAP SAVEDATE extension. + +In order to add this `messageIdTable` column you need to run the following CQL commands: +``` +ALTER TABLE james_keyspace.messageIdTable ADD save_date timestamp; +ALTER TABLE james_keyspace.imapUidTable ADD save_date timestamp; +``` ### Blob Store AES upgraded to PBKDF2WithHmacSHA512 --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
