fastjson升级为1.2.78,数据库yx_store_order_cart_info脚本增加order_id
This commit is contained in:
2
pom.xml
2
pom.xml
@ -37,7 +37,7 @@
|
|||||||
<java.version>1.8</java.version>
|
<java.version>1.8</java.version>
|
||||||
<jedis.version>2.9.0</jedis.version>
|
<jedis.version>2.9.0</jedis.version>
|
||||||
<swagger.version>2.9.2</swagger.version>
|
<swagger.version>2.9.2</swagger.version>
|
||||||
<fastjson.version>1.2.75</fastjson.version>
|
<fastjson.version>1.2.78</fastjson.version>
|
||||||
<druid.version>1.2.6</druid.version>
|
<druid.version>1.2.6</druid.version>
|
||||||
<hutool.version>5.5.7</hutool.version>
|
<hutool.version>5.5.7</hutool.version>
|
||||||
<commons-pool2.version>2.5.0</commons-pool2.version>
|
<commons-pool2.version>2.5.0</commons-pool2.version>
|
||||||
|
@ -21,6 +21,8 @@ ALTER TABLE yx_store_visit modify column product_id bigint(20) NULL DEFAULT NULL
|
|||||||
|
|
||||||
ALTER TABLE yx_store_visit modify column uid bigint(20) NULL DEFAULT NULL COMMENT '用户ID';
|
ALTER TABLE yx_store_visit modify column uid bigint(20) NULL DEFAULT NULL COMMENT '用户ID';
|
||||||
|
|
||||||
|
ALTER TABLE yx_store_order_cart_info ADD COLUMN order_id varchar(32) NULL DEFAULT NULL COMMENT '订单号' AFTER oid;
|
||||||
|
|
||||||
INSERT INTO `menu` VALUES (264, b'0', '终端装修', NULL, 0, 0, 'theme', 'theme', b'0', b'0', '--', '2021-02-25 19:33:17', '', 1, '2021-02-25 19:33:32', 0);
|
INSERT INTO `menu` VALUES (264, b'0', '终端装修', NULL, 0, 0, 'theme', 'theme', b'0', b'0', '--', '2021-02-25 19:33:17', '', 1, '2021-02-25 19:33:32', 0);
|
||||||
INSERT INTO `menu` VALUES (265, b'1', '商城装修', NULL, 264, 999, 'theme', 'https://demo2.yixiang.co/container', b'0', b'0', '-', '2021-02-25 19:35:13', NULL, 1, NULL, 0);
|
INSERT INTO `menu` VALUES (265, b'1', '商城装修', NULL, 264, 999, 'theme', 'https://demo2.yixiang.co/container', b'0', b'0', '-', '2021-02-25 19:35:13', NULL, 1, NULL, 0);
|
||||||
INSERT INTO `roles_menus` VALUES (264, 1);
|
INSERT INTO `roles_menus` VALUES (264, 1);
|
||||||
|
@ -2284,6 +2284,7 @@ DROP TABLE IF EXISTS `yx_store_order_cart_info`;
|
|||||||
CREATE TABLE `yx_store_order_cart_info` (
|
CREATE TABLE `yx_store_order_cart_info` (
|
||||||
`id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
|
`id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
|
||||||
`oid` bigint(20) UNSIGNED NOT NULL COMMENT '订单id',
|
`oid` bigint(20) UNSIGNED NOT NULL COMMENT '订单id',
|
||||||
|
`order_id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '订单号',
|
||||||
`cart_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0 COMMENT '购物车id',
|
`cart_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0 COMMENT '购物车id',
|
||||||
`product_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0 COMMENT '商品ID',
|
`product_id` bigint(20) UNSIGNED NOT NULL DEFAULT 0 COMMENT '商品ID',
|
||||||
`cart_info` text CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '购买东西的详细信息',
|
`cart_info` text CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '购买东西的详细信息',
|
||||||
|
Reference in New Issue
Block a user