Skip to content

Commit

Permalink
doc: add comment about SQL wildcard.
Browse files Browse the repository at this point in the history
  • Loading branch information
ozum authored May 16, 2024
1 parent 2a9985e commit 3d3080f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/types/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ export interface Options {
* List of the schemas or a pattern similar to SQL's `LIKE` to select included schemas.
*
* @example
* const config = { includeSchemas: "public_%" }; // include all schemas starting with "public_"
* const config = { includeSchemas: "public\\_%" }; // include all schemas starting with "public_". `_` is an SQL wildcard character. You should escape it.
*
* @example
* const config = { includeSchemas: ["public", "extra"] };
Expand Down

0 comments on commit 3d3080f

Please sign in to comment.