Skip to content

Commit

Permalink
create schema for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
apriltuesday committed Feb 7, 2024
1 parent 5073d00 commit 1906ba8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ static void dataSourceProperties(DynamicPropertyRegistry registry) {
registry.add("spring.datasource.url", postgreSQLContainer::getJdbcUrl);
registry.add("spring.datasource.username", postgreSQLContainer::getUsername);
registry.add("spring.datasource.password", postgreSQLContainer::getPassword);
registry.add("spring.jpa.hibernate.ddl-auto", () -> "update");
registry.add("spring.jpa.hibernate.ddl-auto", () -> "create-drop");
}

@Test
Expand Down

0 comments on commit 1906ba8

Please sign in to comment.