diff options
author | Rafael Bodill <rafi@sortex.co.il> | 2014-09-19 17:47:01 +0200 |
---|---|---|
committer | Rafael Bodill <rafi@sortex.co.il> | 2014-09-19 17:47:01 +0200 |
commit | 0b62a117ca8d34331406a07dc52aa937ff76ace1 (patch) | |
tree | 318a5c84cdb11d27017d1cadd1dd517618682fd9 /application/migrations/006_add_username_index.php | |
parent | d2c309aee8189a5d6c2a3fcb0a05ea694d7b646e (diff) | |
parent | 75b0a939c7ce24014a8db95a3355d2a7ffdfe3a9 (diff) |
Merge branch 'pgsql_migrations'
* pgsql_migrations:
Optimizing multipaste tables
apikeys.created should be timestamp with default now()
No column based encoding. Reverting dbforge migration
Correcting bracket style for 'if'
Migrations support for PostgreSQL
Diffstat (limited to 'application/migrations/006_add_username_index.php')
-rw-r--r-- | application/migrations/006_add_username_index.php | 26 |
1 files changed, 18 insertions, 8 deletions
diff --git a/application/migrations/006_add_username_index.php b/application/migrations/006_add_username_index.php index ea5e3ebc0..5b8c3584f 100644 --- a/application/migrations/006_add_username_index.php +++ b/application/migrations/006_add_username_index.php @@ -5,17 +5,27 @@ class Migration_Add_username_index extends CI_Migration { public function up() { - $this->db->query(" - ALTER TABLE `users` - ADD UNIQUE `username` (`username`); - "); + if ($this->db->dbdriver == 'postgre') { + $this->db->query(' + CREATE UNIQUE INDEX "users_username_idx" ON "users" ("username") + '); + } else { + $this->db->query(" + ALTER TABLE `users` + ADD UNIQUE `username` (`username`); + "); + } } public function down() { - $this->db->query(" - ALTER TABLE `users` - DROP INDEX `username`; - "); + if ($this->db->dbdriver == 'postgre') { + $this->db->query('DROP INDEX "users_username_idx"'); + } else { + $this->db->query(" + ALTER TABLE `users` + DROP INDEX `username`; + "); + } } } |