Improve error msg for old sqlite3 version

This commit is contained in:
Simon Binder 2022-05-25 15:43:53 +02:00
parent 49f3f64bcc
commit 117fb19db4
No known key found for this signature in database
GPG Key ID: 7891917E4147B8C0
1 changed files with 2 additions and 2 deletions

View File

@ -92,8 +92,8 @@ class ErrorInMoorFile extends MoorError {
// version
var msg = error.message ?? error.type.toString();
if (error.type == AnalysisErrorType.notSupportedInDesiredVersion) {
msg = '$msg\nNote: You can change the sqlite version with build options. '
'See https://drift.simonbinder.eu/options/ for details!';
msg = '$msg\nNote: You can change the assumed sqlite version with build '
'options. See https://drift.simonbinder.eu/options/#assumed-sql-environment for details!';
}
final defaultSeverity =