diff options
Diffstat (limited to 'application/migrations')
-rw-r--r-- | application/migrations/001_add_files.php | 7 | ||||
-rw-r--r-- | application/migrations/003_add_referrers.php | 3 | ||||
-rw-r--r-- | application/migrations/007_repurpose_invitations.php | 3 |
3 files changed, 4 insertions, 9 deletions
diff --git a/application/migrations/001_add_files.php b/application/migrations/001_add_files.php index 70efbb520..30f567325 100644 --- a/application/migrations/001_add_files.php +++ b/application/migrations/001_add_files.php @@ -5,8 +5,7 @@ class Migration_Add_files extends CI_Migration { public function up() { - if ($this->db->dbdriver == 'postgre') - { + if ($this->db->dbdriver == 'postgre') { $this->db->query(' CREATE TABLE IF NOT EXISTS "files" ( "hash" varchar(32) NOT NULL, @@ -20,9 +19,7 @@ class Migration_Add_files extends CI_Migration { CREATE INDEX "files_date_idx" ON files ("date"); CREATE INDEX "files_hash_id_idx" ON files ("hash", "id"); '); - } - else - { + } else { $this->db->query(" CREATE TABLE IF NOT EXISTS `files` ( `hash` varchar(32) CHARACTER SET ascii NOT NULL, diff --git a/application/migrations/003_add_referrers.php b/application/migrations/003_add_referrers.php index 9ca167eab..e30f1faef 100644 --- a/application/migrations/003_add_referrers.php +++ b/application/migrations/003_add_referrers.php @@ -42,8 +42,7 @@ class Migration_Add_referrers extends CI_Migration { public function down() { - if ($this->db->dbdriver == 'postgre') - { + if ($this->db->dbdriver == 'postgre') { $this->db->query(' ALTER TABLE "users" DROP "referrer" '); diff --git a/application/migrations/007_repurpose_invitations.php b/application/migrations/007_repurpose_invitations.php index 024b62984..fb40e8179 100644 --- a/application/migrations/007_repurpose_invitations.php +++ b/application/migrations/007_repurpose_invitations.php @@ -42,8 +42,7 @@ class Migration_Repurpose_invitations extends CI_Migration { public function down() { - if ($this->db->dbdriver == 'postgre') - { + if ($this->db->dbdriver == 'postgre') { $this->db->query('ALTER TABLE "actions" RENAME TO "invitations"'); $this->db->query(' ALTER TABLE "invitations" |