This is an automated email from the ASF dual-hosted git repository.

gaojun2048 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/seatunnel-web.git


The following commit(s) were added to refs/heads/main by this push:
     new c0a8f318 [Hotfix] Fix admin user for using mysql (#100)
c0a8f318 is described below

commit c0a8f31802cc686c3cd1228b865438300aa16771
Author: Kim <[email protected]>
AuthorDate: Thu Aug 10 15:32:36 2023 +0800

    [Hotfix] Fix admin user for using mysql (#100)
---
 .../src/main/resources/script/seatunnel_server_mysql.sql            | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git 
a/seatunnel-server/seatunnel-app/src/main/resources/script/seatunnel_server_mysql.sql
 
b/seatunnel-server/seatunnel-app/src/main/resources/script/seatunnel_server_mysql.sql
index 067d0157..f4abea50 100644
--- 
a/seatunnel-server/seatunnel-app/src/main/resources/script/seatunnel_server_mysql.sql
+++ 
b/seatunnel-server/seatunnel-app/src/main/resources/script/seatunnel_server_mysql.sql
@@ -450,4 +450,10 @@ CREATE TABLE `user_login_log`  (
   PRIMARY KEY (`id`) USING BTREE
 ) ENGINE = InnoDB AUTO_INCREMENT = 106 CHARACTER SET = utf8mb4 COLLATE = 
utf8mb4_general_ci ROW_FORMAT = Dynamic;
 
+-- ----------------------------
+-- Records of user_login_log
+-- ----------------------------
+
+INSERT INTO `seatunnel`.`user`(`username`,`password`,`status`,`type`) values 
('admin', '7f97da8846fed829bb8d1fd9f8030f3b', 0, 0);
+
 SET FOREIGN_KEY_CHECKS = 1;

Reply via email to