在线修改表结构
pt-online-schema-change --user=root --ask-pass --host=localhost --alter "add create_time datetime default current_timestamp" D=qrbuild,t=linkTable --dry-run --print
--dry-run 和 --print 可以先测试一下触发器等的正确性,然后再--execute
pt-online-schema-change --user=root --ask-pass --host=localhost --alter "add create_time datetime default current_timestamp" D=qrbuild,t=linkTable --execute
网友评论