Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update POLICY_DEFINITION field to MEDIUMBLOB in MySQL #12064

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2316,7 +2316,7 @@ CREATE TABLE IF NOT EXISTS AM_OPERATION_POLICY (
CREATE TABLE IF NOT EXISTS AM_OPERATION_POLICY_DEFINITION (
DEFINITION_ID INTEGER AUTO_INCREMENT,
POLICY_UUID VARCHAR(45) NOT NULL,
POLICY_DEFINITION blob NOT NULL,
POLICY_DEFINITION mediumblob NOT NULL,
GATEWAY_TYPE VARCHAR(20) NOT NULL,
DEFINITION_MD5 VARCHAR(45) NOT NULL,
UNIQUE (POLICY_UUID, GATEWAY_TYPE),
Expand Down