(tableName)
| 81 | } |
| 82 | |
| 83 | dropTableQuery(tableName) { |
| 84 | return `DROP TABLE IF EXISTS ${this.quoteTable(tableName)};`; |
| 85 | } |
| 86 | |
| 87 | renameTableQuery(before, after) { |
| 88 | return `ALTER TABLE ${this.quoteTable(before)} RENAME TO ${this.quoteTable(after)};`; |
no test coverage detected