Skip to content

Commit f21ff09

Browse files
committed
Merge branch '3.3.x' into 3.4.x
Closes gh-45350
2 parents a78187c + 737f621 commit f21ff09

File tree

1 file changed

+20
-8
lines changed

1 file changed

+20
-8
lines changed

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

Lines changed: 20 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3066,25 +3066,37 @@
30663066
{
30673067
"name": "spring.jpa.hibernate.ddl-auto",
30683068
"values": [
3069+
{
3070+
"value": "create",
3071+
"description": "Create the schema and destroy previous data."
3072+
},
3073+
{
3074+
"value": "create-drop",
3075+
"description": "Create and then destroy the schema at the end of the session."
3076+
},
3077+
{
3078+
"value": "create-only",
3079+
"description": "Create the schema."
3080+
},
3081+
{
3082+
"value": "drop",
3083+
"description": "Drop the schema."
3084+
},
30693085
{
30703086
"value": "none",
30713087
"description": "Disable DDL handling."
30723088
},
30733089
{
3074-
"value": "validate",
3075-
"description": "Validate the schema, make no changes to the database."
3090+
"value": "truncate",
3091+
"description": "Truncate the tabless in the schema."
30763092
},
30773093
{
30783094
"value": "update",
30793095
"description": "Update the schema if necessary."
30803096
},
30813097
{
3082-
"value": "create",
3083-
"description": "Create the schema and destroy previous data."
3084-
},
3085-
{
3086-
"value": "create-drop",
3087-
"description": "Create and then destroy the schema at the end of the session."
3098+
"value": "validate",
3099+
"description": "Validate the schema, make no changes to the database."
30883100
}
30893101
]
30903102
},

0 commit comments

Comments
 (0)