diff options
author | Felix Kehrer <felix.kehrer@gmail.com> | 2018-05-07 17:23:31 +0200 |
---|---|---|
committer | Felix Kehrer <felix.kehrer@gmail.com> | 2018-05-07 17:23:31 +0200 |
commit | d4d8ba884a80d0f7483efe2fb2c981023f983022 (patch) | |
tree | fa7d5a7ab2eeec91ba5ba133ac402476f4d4c6ab /src/main/resources/sql/H2RegistrationDAOTest_populate.sql | |
parent | eb76fb14b43bd3a1493632f5514eca9a1496bbca (diff) | |
download | sepm-groupproject-d4d8ba884a80d0f7483efe2fb2c981023f983022.tar.gz sepm-groupproject-d4d8ba884a80d0f7483efe2fb2c981023f983022.tar.xz sepm-groupproject-d4d8ba884a80d0f7483efe2fb2c981023f983022.zip |
Changed enums (and similar fields) to match enum names of Java
Diffstat (limited to 'src/main/resources/sql/H2RegistrationDAOTest_populate.sql')
-rw-r--r-- | src/main/resources/sql/H2RegistrationDAOTest_populate.sql | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/resources/sql/H2RegistrationDAOTest_populate.sql b/src/main/resources/sql/H2RegistrationDAOTest_populate.sql index b81eb78..3c268a0 100644 --- a/src/main/resources/sql/H2RegistrationDAOTest_populate.sql +++ b/src/main/resources/sql/H2RegistrationDAOTest_populate.sql @@ -4,7 +4,7 @@ INSERT INTO EmployeeVersion (id, name, birthday, educationLevel, isDriver, isPil INSERT INTO Employee (id, version) VALUES (1, 1); INSERT INTO Employee (id, version) VALUES (2, 2); INSERT INTO Employee (id, version) VALUES (3, 3); -INSERT INTO VehicleVersion (id, name, hasNef, constructionType, type) VALUES (1, 'RTW-1', TRUE, 'Hochdach', 'RTW'); -INSERT INTO VehicleVersion (id, name, hasNef, constructionType, type) VALUES (2, 'NEF-1', FALSE, 'Normal', 'NEF'); -INSERT INTO Vehicle (id, version, status) VALUES (1, 1, 'abgemeldet'); -INSERT INTO Vehicle (id, version, status) VALUES (2, 2, 'abgemeldet');
\ No newline at end of file +INSERT INTO VehicleVersion (id, name, hasNef, constructionType, type) VALUES (1, 'RTW-1', TRUE, 'HOCHDACH', 'RTW'); +INSERT INTO VehicleVersion (id, name, hasNef, constructionType, type) VALUES (2, 'NEF-1', FALSE, 'NORMAL', 'NEF'); +INSERT INTO Vehicle (id, version, status) VALUES (1, 1, 'ABGEMELDET'); +INSERT INTO Vehicle (id, version, status) VALUES (2, 2, 'ABGEMELDET');
\ No newline at end of file |