This is an automated email from the ASF dual-hosted git repository. dsc pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/incubator-pekko-persistence-r2dbc.git
commit e43a5c9a41d17bc4308efc378a7ba66b6a31de7c Author: Daniel Schroeter <[email protected]> AuthorDate: Wed Dec 6 18:31:14 2023 +0100 document table incompatibility with jdbc tables --- docs/src/main/paradox/journal.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/src/main/paradox/journal.md b/docs/src/main/paradox/journal.md index 742ca94..cb33548 100644 --- a/docs/src/main/paradox/journal.md +++ b/docs/src/main/paradox/journal.md @@ -8,6 +8,10 @@ The `event_journal` table and `event_journal_slice_idx` index need to be created The `event_journal_slice_idx` index is only needed if the slice based @ref:[queries](query.md) are used. +## Relation to Pekko JDBC plugin + +Pekko Persistence R2DBC plugin tables are not compatible with the tables of Pekko Persistence JDBC. JDBC data must be migrated using the @ref:[migration tool](migration.md) and a different schema/database must be used (or the table names overridden). + ## Configuration To enable the journal plugin to be used by default, add the following line to your Pekko `application.conf`: --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
