* feat: improve security and prevent xss attacks * chore: fix frontend test file name location * fix: frontend test case * ci: add deployment connection
5 lines
363 B
SQL
5 lines
363 B
SQL
-- Create test user
|
|
insert into users (email, password, admin, created_at, inactivated_at, email_uuid, reset_token, last_password_change)
|
|
select 'testuuid@domain.com', 'a1b2c3d4f5g6', false, current_timestamp, null, 'cc2b5506-83ed-5764-985e-611ad4ce8050', 'abc123456', current_timestamp
|
|
where not exists (select 1 from users where email = 'testuuid@domain.com');
|