Skip to content

Commit

Permalink
Merge pull request #43 from mairess/deploy
Browse files Browse the repository at this point in the history
ci: change hibernate ddl auto from update to create-drop
  • Loading branch information
mairess authored Oct 15, 2024
2 parents acbffc5 + f2f9711 commit 499cf6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/main/resources/application-prod.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ spring.datasource.username=${POSTGRES_USER}
spring.datasource.password=${POSTGRES_PASSWORD}
spring.jpa.database-platform=org.hibernate.dialect.PostgreSQLDialect
# Hibernate configuration
spring.jpa.hibernate.ddl-auto=update
spring.jpa.hibernate.ddl-auto=create-drop
spring.jpa.show-sql=true
spring.application.name=employee-system
# JWT configuration
Expand Down

0 comments on commit 499cf6a

Please sign in to comment.