From 77f9c32138981cb841d21ef4e250aae86a6176f6 Mon Sep 17 00:00:00 2001 From: phl0 Date: Mon, 6 Jan 2025 15:14:22 +0100 Subject: [PATCH] Code formatting corrected --- application/migrations/228_rename_satellites.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/application/migrations/228_rename_satellites.php b/application/migrations/228_rename_satellites.php index 01ff6fefc..68b390019 100644 --- a/application/migrations/228_rename_satellites.php +++ b/application/migrations/228_rename_satellites.php @@ -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);