Skip to content

Commit

Permalink
⏪️ unintended change of ddl-auto
Browse files Browse the repository at this point in the history
  • Loading branch information
MrSebastian committed Jan 13, 2025
1 parent f234b90 commit d7cab00
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ spring:
jpa:
database: H2
hibernate:
ddl-auto: validate
# always drop and create the db should be the best
# configuration for local (development) mode. this
# is also the default, that spring offers by convention.
# but here explicite:
ddl-auto: create-drop
naming.physical-strategy: org.hibernate.boot.model.naming.PhysicalNamingStrategyStandardImpl
# Logging for database operation
show-sql: true
Expand Down

0 comments on commit d7cab00

Please sign in to comment.