Configure H2 database and add repositories

This commit is contained in:
2023-05-06 22:54:19 +02:00
parent a4be85620f
commit efc9f9c77c
10 changed files with 59 additions and 6 deletions

View File

@@ -0,0 +1,5 @@
INSERT INTO ADDRESS (id, street, number, postal_code, country)
values (1, 'street', 1, 9999, 'Luxembourg');
INSERT INTO BANKING_USER (id, username, password, address_id)
values (1, 'user1', 'test', 1);