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

pull/1486/head
Andreas 2022-05-24 20:22:05 +02:00
rodzic e244573a65
commit 1083fb8693
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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);
}