* 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)
| 438 | * @param {object} [options] Query options |
| 439 | */ |
| 440 | async removeColumn(tableName, attributeName, options) { |
| 441 | return this.sequelize.query(this.queryGenerator.removeColumnQuery(tableName, attributeName), options); |
| 442 | } |
| 443 | |
| 444 | normalizeAttribute(dataTypeOrOptions) { |
| 445 | let attribute; |