You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
smallchill d6f9c61948 🎉 2.6.0.RELEASE 4 years ago
..
src/main 统一规范,为bean加上final关键字,非强迫症可无视 5 years ago
README.md 🎉 2.1.0.RELEASE 5 years ago
pom.xml 🎉 2.6.0.RELEASE 4 years ago

README.md

-- 创建 storage库、业务表、undo_log表 create database seata_storage; use seata_storage;

DROP TABLE IF EXISTS tb_storage; CREATE TABLE tb_storage ( id int(11) NOT NULL AUTO_INCREMENT, commodity_code varchar(255) DEFAULT NULL, count int(11) DEFAULT 0, PRIMARY KEY (id), UNIQUE KEY (commodity_code) ) ENGINE=InnoDB DEFAULT CHARSET=utf8;

CREATE TABLE undo_log ( id BIGINT(20) NOT NULL AUTO_INCREMENT, branch_id BIGINT(20) NOT NULL, xid VARCHAR(100) NOT NULL, context VARCHAR(128) NOT NULL, rollback_info LONGBLOB NOT NULL, log_status INT(11) NOT NULL, log_created DATETIME NOT NULL, log_modified DATETIME NOT NULL, ext VARCHAR(100) DEFAULT NULL, PRIMARY KEY (id), UNIQUE KEY ux_undo_log (xid, branch_id) ) ENGINE = InnoDB AUTO_INCREMENT = 1 DEFAULT CHARSET = utf8;

-- 初始化库存模拟数据 INSERT INTO seata_storage.tb_storage (id, commodity_code, count) VALUES (1, 'product-1', 9999999); INSERT INTO seata_storage.tb_storage (id, commodity_code, count) VALUES (2, 'product-2', 0);