Maybe I am doing something wrong but I would like to create data for my Django app tests and first, I would like to create users using sql script in DB Browser SQLite
INSERT INTO
auth_user (date_joined, username, first_name, last_name, email, is_active, is_superuser, is_staff, password)
VALUES
(
DateTime('now'), 'Hamilton', 'Laird', 'Hamilton', 'laird.hamilton@surf.com', 1, 0, 0, 'mereva2019'
)
;
but as password is not encrypted it does not work is there a way to correctly encrypted password?
what would be the good way to do that?