Skip to content

Instantly share code, notes, and snippets.

@leskovia
leskovia / gist:4c7b829cefea00f1aa1bcbaf387bdc9e
Created January 9, 2022 14:17 — forked from karmanov/gist:499e0dfdf8e5ce119ad4
spring.jpa.hibernate.ddl-auto values
validate: validate the schema, makes no changes to the database.
update: update the schema.
create: creates the schema, destroying previous data.
create-drop: drop the schema at the end of the session.