We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 472e91c commit 75d5c75Copy full SHA for 75d5c75
sqliter-driver/src/nativeCommonMain/kotlin/co/touchlab/sqliter/DatabaseConfiguration.kt
@@ -24,8 +24,11 @@ import co.touchlab.sqliter.interop.Logger
24
* to an encrypted db.
25
*
26
* Using this value is a bit of a hack. The next major version will likely include a refactor of config.
27
+ *
28
+ * User version is usually positive, but there are no enforced restrictions from the sqlite side. Using an "uncommon"
29
+ * negative number in case somebody uses negatives for some reason.
30
*/
-const val NO_VERSION_CHECK = -1
31
+const val NO_VERSION_CHECK = -50_001
32
33
data class DatabaseConfiguration(
34
val name: String?,
0 commit comments