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.
57 lines
1.9 KiB
57 lines
1.9 KiB
/* |
|
Navicat Premium Data Transfer |
|
|
|
Source Server : mysql_localhost |
|
Source Server Type : MySQL |
|
Source Server Version : 50723 |
|
Source Host : localhost:3306 |
|
Source Schema : seata_storage |
|
|
|
Target Server Type : MySQL |
|
Target Server Version : 50723 |
|
File Encoding : 65001 |
|
|
|
Date: 13/11/2019 18:12:33 |
|
*/ |
|
|
|
SET NAMES utf8mb4; |
|
SET FOREIGN_KEY_CHECKS = 0; |
|
|
|
-- ---------------------------- |
|
-- Table structure for tb_storage |
|
-- ---------------------------- |
|
DROP TABLE IF EXISTS `tb_storage`; |
|
CREATE TABLE `tb_storage` ( |
|
`id` int(11) NOT NULL AUTO_INCREMENT, |
|
`commodity_code` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, |
|
`count` int(11) NULL DEFAULT 0, |
|
PRIMARY KEY (`id`) USING BTREE, |
|
UNIQUE INDEX `commodity_code`(`commodity_code`) USING BTREE |
|
) ENGINE = InnoDB AUTO_INCREMENT = 3 CHARACTER SET = utf8 COLLATE = utf8_general_ci; |
|
|
|
-- ---------------------------- |
|
-- Records of tb_storage |
|
-- ---------------------------- |
|
BEGIN; |
|
INSERT INTO `tb_storage` VALUES (1, 'product-1', 9999999), (2, 'product-2', 0); |
|
COMMIT; |
|
|
|
-- ---------------------------- |
|
-- Table structure for 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, |
|
`xid` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, |
|
`context` varchar(128) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, |
|
`rollback_info` longblob NOT NULL, |
|
`log_status` int(11) NOT NULL, |
|
`log_created` datetime(0) NOT NULL, |
|
`log_modified` datetime(0) NOT NULL, |
|
`ext` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, |
|
PRIMARY KEY (`id`) USING BTREE, |
|
UNIQUE INDEX `ux_undo_log`(`xid`, `branch_id`) USING BTREE |
|
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci; |
|
|
|
SET FOREIGN_KEY_CHECKS = 1;
|
|
|