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
@@ -3066,25 +3066,37 @@
3066
3066
{
3067
3067
"name": "spring.jpa.hibernate.ddl-auto",
3068
3068
"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
+
},
3069
3085
{
3070
3086
"value": "none",
3071
3087
"description": "Disable DDL handling."
3072
3088
},
3073
3089
{
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."
3076
3092
},
3077
3093
{
3078
3094
"value": "update",
3079
3095
"description": "Update the schema if necessary."
3080
3096
},
3081
3097
{
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."
0 commit comments