2
1
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2023-12-13 21:00:40 +01: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:
Daniel Lockyer 2022-02-04 12:52:22 +01:00
parent ff03d26bbb
commit a1166d575f
No known key found for this signature in database
GPG key ID: D21186F0B47295AD

View file

@ -34,7 +34,7 @@ module.exports = createTransactionalMigration(
.update('welcome_page_url', freeSignupRedirect.value)
.where('type', 'free');
} else {
logging.info(`No members_paid_signup_redirect setting found`);
logging.info(`No members_free_signup_redirect setting found`);
}
},
async function down(knex) {