* 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)
| 759 | * @returns {Promise} |
| 760 | */ |
| 761 | async dropAllSchemas(options) { |
| 762 | return await this.getQueryInterface().dropAllSchemas(options); |
| 763 | } |
| 764 | |
| 765 | /** |
| 766 | * Sync all defined models to the DB. |
no test coverage detected