diff options
author | Florian Pritz <bluewind@xinu.at> | 2014-10-19 23:01:51 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2014-10-19 23:01:51 +0200 |
commit | 1abe7372404a9d65f3b59eda2d83e628267b366d (patch) | |
tree | e9820b18cb65240bb9549b5ed7ac78cc1d6cc59d /application/migrations/001_add_files.php | |
parent | dbb2247b82ab49c50f424c904ac98702507f1a8e (diff) |
Clean up the postgres changes
Style cleanup and some regression fixes
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'application/migrations/001_add_files.php')
-rw-r--r-- | application/migrations/001_add_files.php | 7 |
1 files changed, 2 insertions, 5 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, |