From 004d1eef67ecbb6da77553d41890df61e4581b05 Mon Sep 17 00:00:00 2001 From: Marcel Schwarz Date: Sat, 2 May 2020 11:52:01 +0200 Subject: [PATCH] Change password notice --- backend/src/main/resources/data.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/main/resources/data.sql b/backend/src/main/resources/data.sql index eb174f0..861a41f 100644 --- a/backend/src/main/resources/data.sql +++ b/backend/src/main/resources/data.sql @@ -6,7 +6,7 @@ DELETE FROM role; INSERT INTO role (id, `name`) VALUES (1, 'Admin'); - /* password is the username in lowercase e.g. marcel or tobias + /* password is the firstname in lowercase e.g. marcel or tobias https://bcrypt-generator.com/ with 10 rounds */ INSERT INTO timetrack_user (id, firstname, lastname, password, username, role_id) VALUES