When running spring-boot-sample-jpa insert errors occures. The import.sql file try to insert into note_tags table but the table that麓s get created is note_tag (without s)
This is due to the Hibernate 5 migration: the naming strategy with H4 creates a note_tags table while H5 creates note_tag.
@snicoll convinced me we should try to customise the implicit naming strategy to align with Boot 1.3's behaviour