diff --git a/backend/src/main/resources/db/migration/V2__seed_test_user.sql b/backend/src/main/resources/db/migration/V2__seed_test_user.sql new file mode 100644 index 0000000..4ee9ce3 --- /dev/null +++ b/backend/src/main/resources/db/migration/V2__seed_test_user.sql @@ -0,0 +1,7 @@ +INSERT INTO users (id, email, password_hash, subscription) +VALUES ( + 'a0eebc99-9c0b-4ef8-bb6d-6bb9bd380a11', + 'test@bilhalsning.se', + '$2b$12$18UFRDPgHWuw5FYeu6X1ReisFjjuxs5XxDafi6.wZbsywoU7vUaLG', + 'none' +);