You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/types/index.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -154,7 +154,7 @@ export interface Options {
154
154
* List of the schemas or a pattern similar to SQL's `LIKE` to select included schemas.
155
155
*
156
156
* @example
157
-
* const config = { includeSchemas: "public_%" }; // include all schemas starting with "public_"
157
+
* const config = { includeSchemas: "public\\_%" }; // include all schemas starting with "public_". `_` is an SQL wildcard character. You should escape it.
0 commit comments