Merge pull request #14 from Kingsrook/dependabot/maven/com.h2database-h2-2.1.210

Bump h2 from 1.4.197 to 2.1.210
This commit is contained in:
2022-06-13 15:30:25 -05:00
committed by GitHub
3 changed files with 3 additions and 2 deletions

View File

@ -75,7 +75,7 @@
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>1.4.197</version>
<version>2.1.210</version>
<scope>test</scope>
</dependency>
<dependency>

View File

@ -203,6 +203,7 @@ class QJavalinImplementationTest
Map<String, Serializable> body = new HashMap<>();
body.put("firstName", "Bobby");
body.put("lastName", "Hull");
body.put("email", "bobby@hull.com");
HttpResponse<String> response = Unirest.post(BASE_URL + "/data/person")
.header("Content-Type", "application/json")

View File

@ -22,7 +22,7 @@
DROP TABLE IF EXISTS person;
CREATE TABLE person
(
id SERIAL,
id INT AUTO_INCREMENT,
create_date TIMESTAMP DEFAULT now(),
modify_date TIMESTAMP DEFAULT now(),