| 278 | |
| 279 | changeColumnQuery(tableName, attributes) { |
| 280 | const query = subQuery => `ALTER TABLE ${this.quoteTable(tableName)} ALTER COLUMN ${subQuery};`; |
| 281 | const sql = []; |
| 282 | for (const attributeName in attributes) { |
| 283 | let definition = this.dataTypeMapping(tableName, attributeName, attributes[attributeName]); |
no test coverage detected