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/008_add_profiles.php | |
parent | 33f542487a89da4a8edad934b82aae7484f70ca3 (diff) |
Correcting bracket style for 'if'
Diffstat (limited to 'application/migrations/008_add_profiles.php')
-rw-r--r-- | application/migrations/008_add_profiles.php | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/application/migrations/008_add_profiles.php b/application/migrations/008_add_profiles.php index 1e55c7d14..9958fb03e 100644 --- a/application/migrations/008_add_profiles.php +++ b/application/migrations/008_add_profiles.php @@ -5,8 +5,7 @@ class Migration_Add_profiles extends CI_Migration { public function up() { - if ($this->db->dbdriver == 'postgre') - { + if ($this->db->dbdriver == 'postgre') { $this->db->query(' CREATE TABLE "profiles" ( "user" integer NOT NULL, @@ -18,9 +17,9 @@ class Migration_Add_profiles extends CI_Migration { $this->db->query(' ALTER TABLE "files" ALTER COLUMN "id" TYPE varchar(255); '); - } - else - { + + } else { + $this->db->query(" CREATE TABLE `profiles` ( `user` int(8) unsigned NOT NULL, @@ -37,17 +36,16 @@ class Migration_Add_profiles extends CI_Migration { public function down() { - if ($this->db->dbdriver == 'postgre') - { + if ($this->db->dbdriver == 'postgre') { $this->db->query(' DROP TABLE "profiles"; '); $this->db->query(' ALTER TABLE "files" ALTER COLUMN "id" TYPE varchar(6); '); - } - else - { + + } else { + $this->db->query(" DROP TABLE `profiles`; "); |