* 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 * {@link Model.schema} * * @para
(schema, options)
| 713 | * @returns {Promise} |
| 714 | */ |
| 715 | async createSchema(schema, options) { |
| 716 | return await this.getQueryInterface().createSchema(schema, options); |
| 717 | } |
| 718 | |
| 719 | /** |
| 720 | * Show all defined schemas |
no test coverage detected