(schema, tableName)
| 1346 | } |
| 1347 | |
| 1348 | function createTable(schema, tableName) { |
| 1349 | return knex.schema |
| 1350 | .withSchema(schema) |
| 1351 | .createTable(tableName, (table) => { |
| 1352 | table.string(columnName); |
| 1353 | }); |
| 1354 | } |
| 1355 | |
| 1356 | function checkColumn(schema, tableName) { |
| 1357 | return knex.schema |
no test coverage detected
searching dependent graphs…