From cb2b37436e67ac507182c47f49d5f9c30c3ce7f3 Mon Sep 17 00:00:00 2001 From: lanhao Date: Thu, 2 Jul 2026 19:02:28 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20admin=E9=BB=98=E8=AE=A4=E6=98=BE?= =?UTF-8?q?=E7=A4=BA=E5=90=8D=E6=94=B9=E4=B8=BA=E5=88=98=E9=80=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.7 --- backend/app/db.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/app/db.py b/backend/app/db.py index c32f42a..504d906 100644 --- a/backend/app/db.py +++ b/backend/app/db.py @@ -62,7 +62,7 @@ def init_db(): if not existing: cursor.execute( 'INSERT INTO users (username, display_name, password_hash, role) VALUES (?, ?, ?, ?)', - ('simonkoson', '蓝皓', generate_password_hash('liutong65'), 'admin') + ('simonkoson', '刘通', generate_password_hash('liutong65'), 'admin') ) conn.commit()