123
This commit is contained in:
@@ -33,6 +33,8 @@ CREATE TABLE `lpk_goods` (
|
||||
|
||||
`price` double(12,2) NULL DEFAULT NULL COMMENT '商品价格',
|
||||
`picUrl` VARCHAR(1024) NULL DEFAULT NULL COMMENT '商品图片URL',
|
||||
|
||||
`appContent` text NULL DEFAULT NULL COMMENT '商品介绍',
|
||||
|
||||
PRIMARY KEY (`id`) USING BTREE
|
||||
) ENGINE=InnoDB COMMENT='商品信息';
|
||||
@@ -130,6 +132,7 @@ CREATE TABLE `lpk_store` (
|
||||
`address` VARCHAR(100) NULL DEFAULT NULL COMMENT '地址',
|
||||
`phone` VARCHAR(100) NULL DEFAULT NULL COMMENT '电话',
|
||||
`businessHours` VARCHAR(100) NULL DEFAULT NULL COMMENT '营业时间,提货时间(早X点到晚X点)',
|
||||
`lonAndLat` VARCHAR(100) NULL DEFAULT NULL COMMENT '经度,纬度',
|
||||
|
||||
PRIMARY KEY (`id`) USING BTREE
|
||||
) ENGINE=InnoDB COMMENT='取货点(门店)信息';
|
||||
|
||||
7
docs/databases/重置预约订单数据.sql
Normal file
7
docs/databases/重置预约订单数据.sql
Normal file
@@ -0,0 +1,7 @@
|
||||
|
||||
-- 重置预约-订单数据
|
||||
delete from lpk_customer;
|
||||
delete from lpk_reserve_order;
|
||||
delete from lpk_reserve_order_goods;
|
||||
update lpk_giftcard set state='2',customerSid='',customerMobile='';
|
||||
|
||||
Reference in New Issue
Block a user