mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-26 04:13:30 +03:00
Updated migration warn message
no issue - fixed typo and improved message formatting
This commit is contained in:
parent
96f6ca6218
commit
0958654457
@ -45,7 +45,7 @@ function dropTables(names) {
|
|||||||
const exists = await connection.schema.hasTable(name);
|
const exists = await connection.schema.hasTable(name);
|
||||||
|
|
||||||
if (!exists) {
|
if (!exists) {
|
||||||
logging.warn(`Failed dropping table: ${name}. Table does not exits`);
|
logging.warn(`Failed to drop table: ${name} - table does not exist`);
|
||||||
} else {
|
} else {
|
||||||
logging.info(`Dropping table: ${name}`);
|
logging.info(`Dropping table: ${name}`);
|
||||||
await commands.deleteTable(name, connection);
|
await commands.deleteTable(name, connection);
|
||||||
|
Loading…
Reference in New Issue
Block a user