Browse Source

Add missing suggested values for spring.jpa.hibernate.ddl-auto

Closes gh-45336
pull/45382/head
Stéphane Nicoll 11 months ago
parent
commit
737f621417
  1. 28
      spring-boot-project/spring-boot-autoconfigure/src/main/resources/META-INF/additional-spring-configuration-metadata.json

28
spring-boot-project/spring-boot-autoconfigure/src/main/resources/META-INF/additional-spring-configuration-metadata.json

@ -3165,25 +3165,37 @@ @@ -3165,25 +3165,37 @@
{
"name": "spring.jpa.hibernate.ddl-auto",
"values": [
{
"value": "create",
"description": "Create the schema and destroy previous data."
},
{
"value": "create-drop",
"description": "Create and then destroy the schema at the end of the session."
},
{
"value": "create-only",
"description": "Create the schema."
},
{
"value": "drop",
"description": "Drop the schema."
},
{
"value": "none",
"description": "Disable DDL handling."
},
{
"value": "validate",
"description": "Validate the schema, make no changes to the database."
"value": "truncate",
"description": "Truncate the tabless in the schema."
},
{
"value": "update",
"description": "Update the schema if necessary."
},
{
"value": "create",
"description": "Create the schema and destroy previous data."
},
{
"value": "create-drop",
"description": "Create and then destroy the schema at the end of the session."
"value": "validate",
"description": "Validate the schema, make no changes to the database."
}
]
},

Loading…
Cancel
Save