* 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)
| 728 | * @returns {Promise} |
| 729 | */ |
| 730 | async showAllSchemas(options) { |
| 731 | return await this.getQueryInterface().showAllSchemas(options); |
| 732 | } |
| 733 | |
| 734 | /** |
| 735 | * Drop a single schema |
no test coverage detected