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
@@ -3165,25 +3165,37 @@
3165
3165
{
3166
3166
"name": "spring.jpa.hibernate.ddl-auto",
3167
3167
"values": [
3168
+
{
3169
+
"value": "create",
3170
+
"description": "Create the schema and destroy previous data."
3171
+
},
3172
+
{
3173
+
"value": "create-drop",
3174
+
"description": "Create and then destroy the schema at the end of the session."
3175
+
},
3176
+
{
3177
+
"value": "create-only",
3178
+
"description": "Create the schema."
3179
+
},
3180
+
{
3181
+
"value": "drop",
3182
+
"description": "Drop the schema."
3183
+
},
3168
3184
{
3169
3185
"value": "none",
3170
3186
"description": "Disable DDL handling."
3171
3187
},
3172
3188
{
3173
-
"value": "validate",
3174
-
"description": "Validate the schema, make no changes to the database."
3189
+
"value": "truncate",
3190
+
"description": "Truncate the tabless in the schema."
3175
3191
},
3176
3192
{
3177
3193
"value": "update",
3178
3194
"description": "Update the schema if necessary."
3179
3195
},
3180
3196
{
3181
-
"value": "create",
3182
-
"description": "Create the schema and destroy previous data."
3183
-
},
3184
-
{
3185
-
"value": "create-drop",
3186
-
"description": "Create and then destroy the schema at the end of the session."
3197
+
"value": "validate",
3198
+
"description": "Validate the schema, make no changes to the database."
0 commit comments