You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-autoconfigure/src/main/resources/META-INF/additional-spring-configuration-metadata.json
+20-8Lines changed: 20 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -3241,25 +3241,37 @@
3241
3241
{
3242
3242
"name": "spring.jpa.hibernate.ddl-auto",
3243
3243
"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
+
},
3244
3260
{
3245
3261
"value": "none",
3246
3262
"description": "Disable DDL handling."
3247
3263
},
3248
3264
{
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."
3251
3267
},
3252
3268
{
3253
3269
"value": "update",
3254
3270
"description": "Update the schema if necessary."
3255
3271
},
3256
3272
{
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."
0 commit comments