This is an automated email from the ASF dual-hosted git repository. fanningpj pushed a commit to branch pjfanning-patch-2 in repository https://gitbox.apache.org/repos/asf/pekko-persistence-jdbc.git
commit 5cf1b51b17c99d6abd5edb3a740753716d8a4dd9 Author: PJ Fanning <[email protected]> AuthorDate: Tue Apr 7 01:34:02 2026 +0200 Make TAG column nullable in oracle-create-schema.sql --- core/src/main/resources/schema/oracle/oracle-create-schema.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/resources/schema/oracle/oracle-create-schema.sql b/core/src/main/resources/schema/oracle/oracle-create-schema.sql index 63501b2..9ac5586 100644 --- a/core/src/main/resources/schema/oracle/oracle-create-schema.sql +++ b/core/src/main/resources/schema/oracle/oracle-create-schema.sql @@ -67,7 +67,7 @@ CREATE TABLE DURABLE_STATE STATE_PAYLOAD BLOB NOT NULL, STATE_SERIAL_ID NUMBER(10) NOT NULL, STATE_SERIAL_MANIFEST VARCHAR(255), - TAG VARCHAR(255) NOT NULL, + TAG VARCHAR(255), STATE_TIMESTAMP NUMERIC NOT NULL, PRIMARY KEY (PERSISTENCE_ID) ) --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
