* Remove a column from a table * * @param {string} tableName Table to remove column from * @param {string} attributeName Column name to remove * @param {object} [options] Query options
(tableName, attributeName, options)
| 416 | * @param {object} [options] Query options |
| 417 | */ |
| 418 | async removeColumn(tableName, attributeName, options) { |
| 419 | return this.sequelize.query(this.queryGenerator.removeColumnQuery(tableName, attributeName), options); |
| 420 | } |
| 421 | |
| 422 | normalizeAttribute(dataTypeOrOptions) { |
| 423 | let attribute; |