* Create a new database schema. * * **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 command will do nothing. * * @see * Model.schema * * @para
(schema, options)
| 721 | * @returns {Promise} |
| 722 | */ |
| 723 | async createSchema(schema, options) { |
| 724 | return await this.getQueryInterface().createSchema(schema, options); |
| 725 | } |
| 726 | |
| 727 | /** |
| 728 | * Show all defined schemas |
no test coverage detected