Skip to content

Commit

Permalink
[Fix apache#3469] Change blob to varbinary for ansi
Browse files Browse the repository at this point in the history
  • Loading branch information
fjtirado committed Apr 23, 2024
1 parent 45f20eb commit 83fb6b5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
CREATE TABLE process_instances
(
id CHAR(36) NOT NULL,
payload BLOB NOT NULL,
process_id VARCHAR(4000) NOT NULL,
payload VARBINARY(1000000) NOT NULL,
process_id character varying(4000) NOT NULL,
version BIGINT(19),
process_version VARCHAR(4000),
process_version character varying(4000),
CONSTRAINT process_instances_pkey PRIMARY KEY (id)
);
CREATE INDEX idx_process_instances_process_id ON process_instances (process_id, id, process_version);
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
ALTER TABLE correlation_instances
ALTER COLUMN correlation TYPE character varying(10485760);
ALTER COLUMN correlation TYPE character varying;

0 comments on commit 83fb6b5

Please sign in to comment.