summaryrefslogtreecommitdiffstats
path: root/application/migrations/001_add_files.php
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2015-09-20 15:46:09 +0200
committerFlorian Pritz <bluewind@xinu.at>2015-09-20 15:46:09 +0200
commit2e627d7a88aed82363a7ad48dab21b2b55797452 (patch)
tree1f842ca5711765a9dd8f1c2eefc0a3994493f44f /application/migrations/001_add_files.php
parentffacb290fa8a30e6f3e507bf6842b281efbcd558 (diff)
postgres: Add missing prefix to index creation
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.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/application/migrations/001_add_files.php b/application/migrations/001_add_files.php
index dd37d08c3..7b1398e1c 100644
--- a/application/migrations/001_add_files.php
+++ b/application/migrations/001_add_files.php
@@ -18,8 +18,8 @@ class Migration_Add_files extends CI_Migration {
"mimetype" varchar(255) NOT NULL,
PRIMARY KEY ("id")
);
- CREATE INDEX "files_date_idx" ON '.$prefix.'files ("date");
- CREATE INDEX "files_hash_id_idx" ON '.$prefix.'files ("hash", "id");
+ CREATE INDEX "'.$prefix.'files_date_idx" ON '.$prefix.'files ("date");
+ CREATE INDEX "'.$prefix.'files_hash_id_idx" ON '.$prefix.'files ("hash", "id");
');
} else {
$this->db->query('