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
@@ -30,7 +30,6 @@ The ID type (IDENTITY, SEQUENCE, GENERATOR, EXTERNAL)
30
30
`dbmigration.platform.<PLATFORM>.mapping`
31
31
Adjust the mapping. For example `BOOLEAN=integer(32);BIT=tinyint(3)`
32
32
33
-
34
33
`ebean.migration.applyPrefix`
35
34
Set this to "V" to be compatible with FlywayDB.
36
35
@@ -50,7 +49,7 @@ Set to true if the DB migration should be generated on server start.
50
49
The version of a pending drop that should be generated as the next migration.
51
50
52
51
`ebean.migration.includeGeneratedFileComment`
53
-
TODO
52
+
Adds the header about the migration files being generated when true. Reading 'THIS IS A GENERATED FILE - DO NOT MODIFY'
54
53
55
54
`ebean.migration.metaTable`
56
55
For running migration the DB table that holds migration execution status. Default 'db_migration'
@@ -65,17 +64,17 @@ Subdirectory the model xml files go into. Default 'model'
65
64
Suffix. Default '.model.xml'
66
65
67
66
`ebean.migration.name`
68
-
Description text that can be appended to the version to become the ddl script file name
67
+
Description text that can be appended to the version to become the ddl script file name.
69
68
70
69
`ebean.migration.patchInsertOn`
71
-
migration versions that should be added to history without running.
70
+
Migration versions that should be added to history without running.
72
71
73
72
`ebean.migration.patchResetChecksumOn`
74
73
migration versions that should have their checksum reset and not run.
75
74
Use this if you get a 'Checksum mismatch' error.
76
75
77
76
`ebean.migration.placeholders`
78
-
A comma and equals delimited placeholders that are substituted in SQL scripts when running migration (used by DB Migration runner only).
77
+
A comma and equals delimited map of placeholders that are substituted in SQL scripts when running migration (used by DB Migration runner only).
79
78
80
79
`ebean.migration.platform`
81
80
The database platform to generate migration DDL for.
@@ -90,15 +89,15 @@ The migration version name (typically FlywayDb compatible). Example: 1.1.1_2
90
89
### Ebean UUID options
91
90
92
91
`ebean.uuidVersion`
93
-
Controls, how the UUIDs are generated. Possible values
92
+
Controls how the UUIDs are generated. Possible values:
94
93
- VERSION4 (default) generate random V4 UUIDs,
95
94
- VERSION1 generate rfc4122 compliant Type 1 UUIDs (requires a state file)
96
95
- VERSION1RND generate fake Type 1 UUIDs
97
96
98
97
Note, that V1 UUIDs in conjunction with AUTO_BINARY_OPTIMIZED will give you the best index performance, but you MUST understand how this works to avoid collisions.
99
98
100
99
`ebean.uuidStateFile`
101
-
The state file that is Required to generate V1 UUIDs
100
+
The state file that is required to generate V1 UUIDs.
102
101
103
102
104
103
### DocStoreConfig
@@ -107,7 +106,7 @@ The state file that is Required to generate V1 UUIDs
107
106
True when the Document store integration is active/on.
108
107
109
108
`ebean.docstore.allowAllCertificates`
110
-
Set to true such that the client allows connections to invalid/selfsigned SSL certificates.
109
+
Set to true such that the client allows connections to invalid/self-signed SSL certificates.
111
110
112
111
`ebean.docstore.bulkBatchSize`
113
112
The default batch size to use for the Bulk API calls.
@@ -192,7 +191,7 @@ Suffix appended to the base table to derive the view that contains the union of
192
191
Set to true if the DataSource uses autoCommit. Indicates that Ebean should use autoCommit friendly Transactions and TransactionManager.
193
192
194
193
`ebean.autoReadOnlyDataSource`
195
-
When true create a read only DataSource using readOnlyDataSourceConfig defaulting values from dataSourceConfig
194
+
When true create a read only DataSource using readOnlyDataSourceConfig defaulting values from dataSourceConfig.
0 commit comments