aboutsummaryrefslogtreecommitdiff
path: root/db_create.py
diff options
context:
space:
mode:
Diffstat (limited to 'db_create.py')
-rw-r--r--db_create.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/db_create.py b/db_create.py
index 7cdd6411..5e803fc5 100644
--- a/db_create.py
+++ b/db_create.py
@@ -69,7 +69,7 @@ role_user = Role(name="user")
user1 = User(firstname="admin", lastname="admin",
email="root@pyAggr3g470r.localhost",
- pwdhash=generate_password_hash("root_password"))
+ pwdhash=generate_password_hash("password"))
user1.roles.extend([role_admin, role_user])
db.session.add(user1)
bgstack15