Skip to content

Commit 9657159

Browse files
author
Vianpyro
committed
Remove salt parameter from mock person registration calls
1 parent aed5359 commit 9657159

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

setup/z_mock/person.sql

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
USE smartcooking;
33

44
-- Fill the database with mock data
5-
CALL register_person('John Doe', '[email protected]', 'password', unhex('a1b2c3d4e5f6a7b8c9d0e1f2a3b4c5d6'), 'en');
6-
CALL register_person('Jane Smith', '[email protected]', 'password', unhex('f1e2d3c4b5a6978899aabbccddeeff00'), 'fr');
7-
CALL register_person('Alice Brown', '[email protected]', 'password', unhex('0123456789abcdef0123456789abcdef'), 'es');
8-
CALL register_person('Bob White', '[email protected]', 'password', unhex('fedcba9876543210fedcba9876543210'), 'en');
5+
CALL register_person('John Doe', '[email protected]', 'password', 'en');
6+
CALL register_person('Jane Smith', '[email protected]', 'password', 'fr');
7+
CALL register_person('Alice Brown', '[email protected]', 'password', 'es');
8+
CALL register_person('Bob White', '[email protected]', 'password', 'en');

0 commit comments

Comments
 (0)