mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
Updated migration warn message
no issue - fixed typo and improved message formatting
This commit is contained in:
parent
96f6ca6218
commit
0958654457
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ function dropTables(names) {
|
|||
const exists = await connection.schema.hasTable(name);
|
||||
|
||||
if (!exists) {
|
||||
logging.warn(`Failed dropping table: ${name}. Table does not exits`);
|
||||
logging.warn(`Failed to drop table: ${name} - table does not exist`);
|
||||
} else {
|
||||
logging.info(`Dropping table: ${name}`);
|
||||
await commands.deleteTable(name, connection);
|
||||
|
|
Loading…
Add table
Reference in a new issue