Skip to content

Commit 3bfc1b1

Browse files
committed
Merge branch '3.4.x'
Closes gh-45351
2 parents 5a97d2e + f21ff09 commit 3bfc1b1

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
@@ -3241,25 +3241,37 @@
32413241
{
32423242
"name": "spring.jpa.hibernate.ddl-auto",
32433243
"values": [
3244+
{
3245+
"value": "create",
3246+
"description": "Create the schema and destroy previous data."
3247+
},
3248+
{
3249+
"value": "create-drop",
3250+
"description": "Create and then destroy the schema at the end of the session."
3251+
},
3252+
{
3253+
"value": "create-only",
3254+
"description": "Create the schema."
3255+
},
3256+
{
3257+
"value": "drop",
3258+
"description": "Drop the schema."
3259+
},
32443260
{
32453261
"value": "none",
32463262
"description": "Disable DDL handling."
32473263
},
32483264
{
3249-
"value": "validate",
3250-
"description": "Validate the schema, make no changes to the database."
3265+
"value": "truncate",
3266+
"description": "Truncate the tabless in the schema."
32513267
},
32523268
{
32533269
"value": "update",
32543270
"description": "Update the schema if necessary."
32553271
},
32563272
{
3257-
"value": "create",
3258-
"description": "Create the schema and destroy previous data."
3259-
},
3260-
{
3261-
"value": "create-drop",
3262-
"description": "Create and then destroy the schema at the end of the session."
3273+
"value": "validate",
3274+
"description": "Validate the schema, make no changes to the database."
32633275
}
32643276
]
32653277
},

0 commit comments

Comments
 (0)