Code formatting corrected

This commit is contained in:
phl0
2025-01-06 15:14:22 +01:00
parent 37a3829a02
commit 77f9c32138

View File

@@ -175,14 +175,14 @@ class Migration_rename_satellites extends CI_Migration {
if ($this->db->table_exists('satellite')) {
if ($this->db->field_exists('displayname', 'satellite')) {
$fields = array(
'displayname' => array(
'name' => 'exportname',
'type' => 'VARCHAR',
'constraint' => 255,
),
);
}
$fields = array(
'displayname' => array(
'name' => 'exportname',
'type' => 'VARCHAR',
'constraint' => 255,
),
);
}
$this->dbforge->modify_column('satellite', $fields);