mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-20 22:42:53 -05:00
Updated migration logging string for correctness
no issue - we check the presence of `members_free_signup_redirect` here but the log line said `members_paid_signup_redirect` - this must have been missed in review but it's simple enough to fix
This commit is contained in:
parent
ff03d26bbb
commit
a1166d575f
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ module.exports = createTransactionalMigration(
|
||||||
.update('welcome_page_url', freeSignupRedirect.value)
|
.update('welcome_page_url', freeSignupRedirect.value)
|
||||||
.where('type', 'free');
|
.where('type', 'free');
|
||||||
} else {
|
} else {
|
||||||
logging.info(`No members_paid_signup_redirect setting found`);
|
logging.info(`No members_free_signup_redirect setting found`);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
async function down(knex) {
|
async function down(knex) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue