Skip to content

Commit

Permalink
!12 修复sql脚本执行报错
Browse files Browse the repository at this point in the history
Merge pull request !12 from belldog/master
  • Loading branch information
zlt2000 authored and gitee-org committed Mar 3, 2021
2 parents b0768b8 + 2e49e17 commit ecdbe2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zlt-demo/seata-demo/seata-demo.sql
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ USE `seata-demo`;
-- you must to init this sql for you business databese. the seata server not need it.
-- 此脚本必须初始化在你当前的业务数据库中,用于AT 模式XID记录。与server端无关(注:业务数据库)
-- 注意此处0.3.0+ 增加唯一索引 ux_undo_log
drop table `undo_log`;
DROP TABLE IF EXISTS `undo_log`;
CREATE TABLE `undo_log` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`branch_id` bigint(20) NOT NULL,
Expand Down

0 comments on commit ecdbe2a

Please sign in to comment.