2
0

Compare commits

2 Commits

Author SHA1 Message Date
simonzhangsz
476631b74b feat: create wfc_user_db database 2024-12-13 21:16:04 +08:00
simonzhangsz
448eb7dbff feat: update sql add database create 2024-12-13 21:14:20 +08:00
3 changed files with 15 additions and 0 deletions

View File

@@ -14,9 +14,14 @@
Date: 03/12/2024 16:20:58
*/
-- DROP DATABASE IF EXISTS `wfc_config_db`;
CREATE DATABASE IF NOT EXISTS `wfc_config_db` DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
USE wfc_config_db;
-- ----------------------------
-- Table structure for config_info
-- ----------------------------

View File

@@ -14,9 +14,14 @@
Date: 03/12/2024 16:40:04
*/
-- DROP DATABASE IF EXISTS `wfc_system_db`;
CREATE DATABASE IF NOT EXISTS `wfc_system_db` DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
USE wfc_system_db;
-- ----------------------------
-- Table structure for sys_config
-- ----------------------------

View File

@@ -14,9 +14,14 @@
Date: 06/12/2024 15:31:06
*/
-- DROP DATABASE IF EXISTS `wfc_user_db`;
CREATE DATABASE IF NOT EXISTS `wfc_user_db` DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
USE wfc_user_db;
-- ----------------------------
-- Table structure for u_bill
-- ----------------------------