mirror of https://github.com/AMT-Cheif/drift.git
Improve error msg for old sqlite3 version
This commit is contained in:
parent
49f3f64bcc
commit
117fb19db4
|
@ -92,8 +92,8 @@ class ErrorInMoorFile extends MoorError {
|
||||||
// version
|
// version
|
||||||
var msg = error.message ?? error.type.toString();
|
var msg = error.message ?? error.type.toString();
|
||||||
if (error.type == AnalysisErrorType.notSupportedInDesiredVersion) {
|
if (error.type == AnalysisErrorType.notSupportedInDesiredVersion) {
|
||||||
msg = '$msg\nNote: You can change the sqlite version with build options. '
|
msg = '$msg\nNote: You can change the assumed sqlite version with build '
|
||||||
'See https://drift.simonbinder.eu/options/ for details!';
|
'options. See https://drift.simonbinder.eu/options/#assumed-sql-environment for details!';
|
||||||
}
|
}
|
||||||
|
|
||||||
final defaultSeverity =
|
final defaultSeverity =
|
||||||
|
|
Loading…
Reference in New Issue