mirror of
https://gitee.com/youlaitech/youlai-mall.git
synced 2024-12-22 20:54:26 +08:00
15 lines
828 B
SQL
15 lines
828 B
SQL
-- for AT mode you must to init this sql for you business database. the seata server not need it.
|
|
CREATE TABLE IF NOT EXISTS `undo_log`
|
|
(
|
|
`branch_id` BIGINT NOT NULL COMMENT 'branch transaction id',
|
|
`xid` VARCHAR(128) NOT NULL COMMENT 'global transaction id',
|
|
`context` VARCHAR(128) NOT NULL COMMENT 'undo_log context,such as serialization',
|
|
`rollback_info` LONGBLOB NOT NULL COMMENT 'rollback info',
|
|
`log_status` INT(11) NOT NULL COMMENT '0:normal status,1:defense status',
|
|
`log_created` DATETIME(6) NOT NULL COMMENT 'create datetime',
|
|
`log_modified` DATETIME(6) NOT NULL COMMENT 'modify datetime',
|
|
UNIQUE KEY `ux_undo_log` (`xid`, `branch_id`)
|
|
) ENGINE = InnoDB
|
|
AUTO_INCREMENT = 1
|
|
DEFAULT CHARSET = utf8 COMMENT ='AT transaction mode undo table';
|