From e244573a65540cc45e13435709e70e6959cb98ff Mon Sep 17 00:00:00 2001 From: Peter Goodhall Date: Fri, 20 May 2022 12:28:23 +0100 Subject: [PATCH] Fixed migration file --- application/migrations/092_add_service_username.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/migrations/092_add_service_username.php b/application/migrations/092_add_service_username.php index 42be4d76..994298cc 100644 --- a/application/migrations/092_add_service_username.php +++ b/application/migrations/092_add_service_username.php @@ -20,7 +20,7 @@ class Migration_add_service_username extends CI_Migration { ) ); - if (!$this->db->field_exists('public_slug', 'thirdparty_logins')) { + if (!$this->db->field_exists('thirdparty_logins', 'service_username')) { $this->dbforge->add_column('thirdparty_logins', $fields); }