* Drop all 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 is the equivalent of drop all tables. * * @param {object} [options={}] query options
(options)
| 767 | * @returns {Promise} |
| 768 | */ |
| 769 | async dropAllSchemas(options) { |
| 770 | return await this.getQueryInterface().dropAllSchemas(options); |
| 771 | } |
| 772 | |
| 773 | /** |
| 774 | * Sync all defined models to the DB. |
no test coverage detected