[Migration] Fixed script. Column name and table name were swapped.

This commit is contained in:
Andreas
2022-05-24 20:22:05 +02:00
parent e244573a65
commit 1083fb8693

View File

@@ -20,7 +20,7 @@ class Migration_add_service_username extends CI_Migration {
)
);
if (!$this->db->field_exists('thirdparty_logins', 'service_username')) {
if (!$this->db->field_exists('service_username', 'thirdparty_logins')) {
$this->dbforge->add_column('thirdparty_logins', $fields);
}