[bookshelf] Adding withSchema SyncOption (#33723)

PR where the option was added:
https://github.com/bookshelf/bookshelf/pull/1638
This commit is contained in:
Min-Young Wu
2019-03-11 13:21:27 -07:00
committed by Wesley Wigham
parent 1e3e89fe6f
commit d3b2bbcd82
+2 -1
View File
@@ -1,4 +1,4 @@
// Type definitions for bookshelfjs v0.9.4
// Type definitions for bookshelfjs v0.13.0
// Project: http://bookshelfjs.org/
// Definitions by: Andrew Schurman <https://github.com/arcticwaters>, Vesa Poikajärvi <https://github.com/vesse>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
@@ -317,6 +317,7 @@ declare namespace Bookshelf {
interface SyncOptions {
transacting?: Knex.Transaction;
debug?: boolean;
withSchema?: string;
}
interface CollectionOptions<T> {