diff options
Diffstat (limited to 'application/migrations')
-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`; + "); + } +} |