diff --git a/schema/mysql/v57/temporal/versioned/v1.10/update_info_maps_table.sql b/schema/mysql/v57/temporal/versioned/v1.10/update_info_maps_table.sql index 5f6e59bf38f..2a745d7887a 100644 --- a/schema/mysql/v57/temporal/versioned/v1.10/update_info_maps_table.sql +++ b/schema/mysql/v57/temporal/versioned/v1.10/update_info_maps_table.sql @@ -4,7 +4,7 @@ CREATE TABLE update_info_maps ( namespace_id BINARY(16) NOT NULL, workflow_id VARCHAR(255) NOT NULL, run_id BINARY(16) NOT NULL, - updat_id VARCHAR(255) NOT NULL, + update_id VARCHAR(255) NOT NULL, -- data MEDIUMBLOB NOT NULL, data_encoding VARCHAR(16), diff --git a/schema/mysql/v57/version.go b/schema/mysql/v57/version.go index d4a22d65241..4d527ff5c95 100644 --- a/schema/mysql/v57/version.go +++ b/schema/mysql/v57/version.go @@ -27,7 +27,7 @@ package v57 // NOTE: whenever there is a new database schema update, plz update the following versions // Version is the MySQL database release version -const Version = "1.9" +const Version = "1.10" // VisibilityVersion is the MySQL visibility database release version const VisibilityVersion = "1.1" diff --git a/schema/mysql/v8/temporal/versioned/v1.10/update_info_maps_table.sql b/schema/mysql/v8/temporal/versioned/v1.10/update_info_maps_table.sql index 5f6e59bf38f..2a745d7887a 100644 --- a/schema/mysql/v8/temporal/versioned/v1.10/update_info_maps_table.sql +++ b/schema/mysql/v8/temporal/versioned/v1.10/update_info_maps_table.sql @@ -4,7 +4,7 @@ CREATE TABLE update_info_maps ( namespace_id BINARY(16) NOT NULL, workflow_id VARCHAR(255) NOT NULL, run_id BINARY(16) NOT NULL, - updat_id VARCHAR(255) NOT NULL, + update_id VARCHAR(255) NOT NULL, -- data MEDIUMBLOB NOT NULL, data_encoding VARCHAR(16), diff --git a/schema/mysql/v8/version.go b/schema/mysql/v8/version.go index 7c053bc0f6f..ba07bb03dc0 100644 --- a/schema/mysql/v8/version.go +++ b/schema/mysql/v8/version.go @@ -27,7 +27,7 @@ package v8 // NOTE: whenever there is a new database schema update, plz update the following versions // Version is the MySQL database release version -const Version = "1.9" +const Version = "1.10" // VisibilityVersion is the MySQL visibility database release version const VisibilityVersion = "1.3"