Skip to content

Commit

Permalink
fix issue: Specified key was too long; max key length is 3072 bytes (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
huan11 authored Jul 10, 2024
1 parent 0d4ffd5 commit 632e0d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions create_table.sql
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ CREATE TABLE IF NOT EXISTS `recover_config`
CREATE TABLE IF NOT EXISTS `multi_cluster_sync_info`
(
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '主键',
`data_center` varchar(512) NOT NULL COMMENT '集群名称',
`remote_data_center` varchar(512) NOT NULL COMMENT '同步的集群名称',
`data_center` varchar(255) NOT NULL COMMENT '集群名称',
`remote_data_center` varchar(255) NOT NULL COMMENT '同步的集群名称',
`remote_meta_address` varchar(1024) NOT NULL COMMENT '同步的集群地址',
`enable_sync_datum` varchar(16) NOT NULL COMMENT 'datum同步的开关是否开启',
`enable_push` varchar(16) NOT NULL COMMENT '同步的数据是否允许推送',
Expand Down

0 comments on commit 632e0d6

Please sign in to comment.