Change default for new_generator_mappings to true

Closes gh-7612
This commit is contained in:
Madhura Bhave
2017-04-24 15:47:14 -07:00
parent 1ad318d8a6
commit bc1ee76b55
11 changed files with 22 additions and 6 deletions

View File

@@ -22,12 +22,14 @@ import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.test.context.TestPropertySource;
import org.springframework.test.context.junit4.SpringRunner;
import static org.assertj.core.api.Assertions.assertThat;
@RunWith(SpringRunner.class)
@SpringBootTest
@TestPropertySource(properties = "spring.jpa.hibernate.use-new-id-generator-mappings=false")
public class SampleFlywayApplicationTests {
@Autowired