Commit ab7f3317b06e7413c27ff0b13834d6caa4f637ff
1 parent
70b9ec3e
商品价格显示修改
Showing
1 changed file
with
36 additions
and
0 deletions
shop/src/main/resources/canrd_overseas.sql
0 → 100644
1 | +/* | ||
2 | + Navicat Premium Data Transfer | ||
3 | + | ||
4 | + Source Server : localhost | ||
5 | + Source Server Type : MySQL | ||
6 | + Source Server Version : 50743 | ||
7 | + Source Host : localhost:3306 | ||
8 | + Source Schema : canrd_overseas | ||
9 | + | ||
10 | + Target Server Type : MySQL | ||
11 | + Target Server Version : 50743 | ||
12 | + File Encoding : 65001 | ||
13 | + | ||
14 | + Date: 11/11/2024 17:11:41 | ||
15 | +*/ | ||
16 | + | ||
17 | +SET NAMES utf8mb4; | ||
18 | +SET FOREIGN_KEY_CHECKS = 0; | ||
19 | + | ||
20 | +-- ---------------------------- | ||
21 | +-- Table structure for switch_control | ||
22 | +-- ---------------------------- | ||
23 | +DROP TABLE IF EXISTS `switch_control`; | ||
24 | +CREATE TABLE `switch_control` ( | ||
25 | + `id` int(11) NOT NULL AUTO_INCREMENT, | ||
26 | + `switch_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL, | ||
27 | + `is_enabled` tinyint(1) NOT NULL DEFAULT 0, | ||
28 | + PRIMARY KEY (`id`) USING BTREE | ||
29 | +) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic; | ||
30 | + | ||
31 | +-- ---------------------------- | ||
32 | +-- Records of switch_control | ||
33 | +-- ---------------------------- | ||
34 | +INSERT INTO `switch_control` VALUES (1, 'product_price_show', 0); | ||
35 | + | ||
36 | +SET FOREIGN_KEY_CHECKS = 1; |