(tableName)
| 110 | } |
| 111 | |
| 112 | dropTableQuery(tableName) { |
| 113 | return `DROP TABLE IF EXISTS ${this.quoteTable(tableName)};`; |
| 114 | } |
| 115 | |
| 116 | renameTableQuery(before, after) { |
| 117 | return `ALTER TABLE ${this.quoteTable(before)} RENAME TO ${this.quoteTable(after)};`; |
no test coverage detected