Fix the login of the demo users

This commit is contained in:
jordi fita mas 2023-07-27 20:35:34 +02:00
parent 5c4ade15bc
commit bf0c86a796
1 changed files with 2 additions and 2 deletions

View File

@ -4,8 +4,8 @@ set search_path to camper, auth, public;
alter sequence user_user_id_seq restart with 42;
insert into auth."user" (email, name, password, role)
values ('demo@numerus', 'Demo User', 'demo', 'employee')
, ('admin@numerus', 'Demo Admin', 'admin', 'admin')
values ('demo@camper', 'Demo User', 'demo', 'employee')
, ('admin@camper', 'Demo Admin', 'admin', 'admin')
;
commit;