| 287 | |
| 288 | changeColumnQuery(tableName, attributes) { |
| 289 | const query = subQuery => `ALTER TABLE ${this.quoteTable(tableName)} ALTER COLUMN ${subQuery};`; |
| 290 | const sql = []; |
| 291 | for (const attributeName in attributes) { |
| 292 | let definition = this.dataTypeMapping(tableName, attributeName, attributes[attributeName]); |
no test coverage detected