Skip to content

Commit

Permalink
chore: update docs reference in sqlite3 warning (#5207)
Browse files Browse the repository at this point in the history
  • Loading branch information
vitor-mda committed Jun 3, 2022
1 parent 84af57a commit 29ba203
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/dialects/sqlite3/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class Client_SQLite3 extends Client {
this.logger.warn(
'sqlite does not support inserting default values. Set the ' +
'`useNullAsDefault` flag to hide this warning. ' +
'(see docs http://knexjs.org/#Builder-insert).'
'(see docs https://knexjs.org/guide/query-builder.html#insert).'
);
}
}
Expand Down
2 changes: 1 addition & 1 deletion lib/dialects/sqlite3/query/sqlite-querycompiler.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ class QueryCompiler_SQLite3 extends QueryCompiler {
throw new TypeError(
'`sqlite` does not support inserting default values. Specify ' +
'values explicitly or use the `useNullAsDefault` config flag. ' +
'(see docs http://knexjs.org/#Builder-insert).'
'(see docs https://knexjs.org/guide/query-builder.html#insert).'
);
});
});
Expand Down

0 comments on commit 29ba203

Please sign in to comment.