* Show all defined schemas * * **Note:** this is a schema in the [postgres sense of the word](http://www.postgresql.org/docs/9.1/static/ddl-schemas.html), * not a database table. In mysql and sqlite, this will show all tables. * * @param {object} [options={}] query options * @param
(options)
| 736 | * @returns {Promise} |
| 737 | */ |
| 738 | async showAllSchemas(options) { |
| 739 | return await this.getQueryInterface().showAllSchemas(options); |
| 740 | } |
| 741 | |
| 742 | /** |
| 743 | * Drop a single schema |
no test coverage detected