diff options
author | Florian Pritz <bluewind@xinu.at> | 2012-07-12 01:08:15 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2012-07-12 01:10:11 +0200 |
commit | 700fc306106c7acebb73e9479f93006388ea80a0 (patch) | |
tree | 4a422ec20ffe6d1c4ed3e1ac2665ce23239d20c9 /application/migrations/006_add_username_index.php | |
parent | 56d2a7f6484ff6a75872371fda6cac21cbe5917c (diff) |
Add unique index for users.username
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'application/migrations/006_add_username_index.php')
-rw-r--r-- | application/migrations/006_add_username_index.php | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/application/migrations/006_add_username_index.php b/application/migrations/006_add_username_index.php new file mode 100644 index 000000000..cdeefedc4 --- /dev/null +++ b/application/migrations/006_add_username_index.php @@ -0,0 +1,21 @@ +<?php +defined('BASEPATH') OR exit('No direct script access allowed'); + +class Migration_Add_username_index extends CI_Migration { + + public function up() + { + $this->db->query(" + ALTER TABLE `users` + ADD UNIQUE `username` (`username`); + "); + } + + public function down() + { + $this->db->query(" + ALTER TABLE `files` + DROP INDEX `username`; + "); + } +} |