From 3e329a4ea34e471c57b6395f3a31793cc3ebe606 Mon Sep 17 00:00:00 2001 From: wolfcode <37436228+wolf-leo@users.noreply.github.com> Date: Wed, 13 Nov 2024 16:30:15 +0800 Subject: [PATCH] fix(install): update ea_system_admin insert statement - Add missing column for 'status' in ea_system_admin insert statement - Set 'status' column to 1 for the admin user --- config/install/sql/install.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/install/sql/install.sql b/config/install/sql/install.sql index 9b3878b..1fb4f06 100644 --- a/config/install/sql/install.sql +++ b/config/install/sql/install.sql @@ -108,7 +108,7 @@ CREATE TABLE `ea_system_admin` -- Records of ea_system_admin -- ---------------------------- INSERT INTO `ea_system_admin` -VALUES ('1', null, '/static/admin/images/head.jpg', 'admin', 'a33b679d5581a8692988ec9f92ad2d6a2259eaa7', 'admin', 'admin', '0', '0', '1', '1589454169', '1589476815', null); +VALUES ('1', null, '/static/admin/images/head.jpg', 'admin', 'a33b679d5581a8692988ec9f92ad2d6a2259eaa7', 'admin', 'admin', '0', '0', '1', '1589454169', '1589476815', null,1,''); -- ---------------------------- -- Table structure for ea_system_auth