* Drop the table represented by this Model * * @param {object} [options] drop options * @param {boolean} [options.cascade=false] Also drop all objects depending on this table, such as views. Only works in postgres * @param {Function} [options.logging=false] A function that gets ex
(options)
| 1394 | * @returns {Promise} |
| 1395 | */ |
| 1396 | static async drop(options) { |
| 1397 | return await this.queryInterface.dropTable(this.getTableName(options), options); |
| 1398 | } |
| 1399 | |
| 1400 | static async dropSchema(schema) { |
| 1401 | return await this.queryInterface.dropSchema(schema); |
no test coverage detected