Skip to content

Commit

Permalink
fix: fix a typo in sql
Browse files Browse the repository at this point in the history
  • Loading branch information
Lambert-Rao committed Apr 14, 2024
1 parent 8fb932c commit da15ab4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ CREATE TABLE `meta`
`role` varchar(16) NOT NULL DEFAULT '-1' COMMENT '角色, leader follower observer',
`username` varchar(192) NOT NULL DEFAULT '' COMMENT '注册中心用户名',
`params` varchar(192) NOT NULL DEFAULT '' COMMENT '注册中心启动参数',
`status` tinyint(redundant4) unsigned NOT NULL DEFAULT '0' COMMENT '状态: 1启用,0未启用',
`status` tinyint(4) unsigned NOT NULL DEFAULT '0' COMMENT '状态: 1启用,0未启用',

`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
`update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改时间',
Expand Down

0 comments on commit da15ab4

Please sign in to comment.