35 Star 380 Fork 220

exclusiver/springcloud2020

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
t_storage.sql 913 Bytes
一键复制 编辑 原始数据 按行查看 历史
exclusiver 提交于 2020-03-13 14:27 . Seata(Storage-service)
/*
Navicat Premium Data Transfer
Source Server : CentOS虚拟机
Source Server Type : MySQL
Source Server Version : 50728
Source Host : 192.168.113.6:3306
Source Schema : seata_storage
Target Server Type : MySQL
Target Server Version : 50728
File Encoding : 65001
Date: 13/03/2020 10:06:21
*/
SET NAMES utf8mb4;
-- ----------------------------
-- Table structure for seata_storage
-- ----------------------------
DROP TABLE IF EXISTS `seata_storage`;
CREATE TABLE `t_storage` (
`id` bigint(11) NOT NULL AUTO_INCREMENT,
`product_id` bigint(11) NULL DEFAULT NULL COMMENT '产品id',
`total` int(11) NULL DEFAULT NULL COMMENT '库存',
`used` int(11) NULL DEFAULT NULL COMMENT '已用库存',
`residue` int(11) NULL DEFAULT NULL COMMENT '剩余库存',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8mb4 ;
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/exclusiver/springcloud2020.git
[email protected]:exclusiver/springcloud2020.git
exclusiver
springcloud2020
springcloud2020
master

搜索帮助