diff options
author | Rafael Bodill <rafi@sortex.co.il> | 2014-09-18 21:47:21 +0200 |
---|---|---|
committer | Rafael Bodill <rafi@sortex.co.il> | 2014-09-18 21:47:21 +0200 |
commit | fe7f15dbfb8020daf96110e86e359ec01558fcb8 (patch) | |
tree | 60f59922c52d1607cd7c8ebbdb48b8b6101d2648 /application/migrations/004_add_filesize.php | |
parent | 33f542487a89da4a8edad934b82aae7484f70ca3 (diff) |
Correcting bracket style for 'if'
Diffstat (limited to 'application/migrations/004_add_filesize.php')
-rw-r--r-- | application/migrations/004_add_filesize.php | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/application/migrations/004_add_filesize.php b/application/migrations/004_add_filesize.php index 7e5355c14..f2367937a 100644 --- a/application/migrations/004_add_filesize.php +++ b/application/migrations/004_add_filesize.php @@ -5,15 +5,12 @@ class Migration_Add_filesize extends CI_Migration { public function up() { - if ($this->db->dbdriver == 'postgre') - { + if ($this->db->dbdriver == 'postgre') { $this->db->query(' ALTER TABLE "files" ADD "filesize" integer NOT NULL '); - } - else - { + } else { $this->db->query(" ALTER TABLE `files` ADD `filesize` INT UNSIGNED NOT NULL @@ -23,14 +20,11 @@ class Migration_Add_filesize extends CI_Migration { public function down() { - if ($this->db->dbdriver == 'postgre') - { + if ($this->db->dbdriver == 'postgre') { $this->db->query(' ALTER TABLE "files" DROP "filesize" '); - } - else - { + } else { $this->db->query(' ALTER TABLE `files` DROP `filesize` '); |