diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2013-02-01 20:04:38 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2013-02-01 20:04:38 +0000 |
commit | 8b010e85e362245eece363682895fa0c445dc83b (patch) | |
tree | d5784cb6eed02b2f9d3acc3c21b218da73aa0604 /db | |
parent | 9bf98bce26d90ecee4d2a05d0c66aed4354a2822 (diff) | |
download | redmine-8b010e85e362245eece363682895fa0c445dc83b.tar.gz redmine-8b010e85e362245eece363682895fa0c445dc83b.zip |
Add unique index on tokens.value.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11295 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'db')
-rw-r--r-- | db/migrate/20130201184705_add_unique_index_on_tokens_value.rb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/db/migrate/20130201184705_add_unique_index_on_tokens_value.rb b/db/migrate/20130201184705_add_unique_index_on_tokens_value.rb new file mode 100644 index 000000000..fdec9f8ee --- /dev/null +++ b/db/migrate/20130201184705_add_unique_index_on_tokens_value.rb @@ -0,0 +1,15 @@ +class AddUniqueIndexOnTokensValue < ActiveRecord::Migration + def up + say_with_time "Adding unique index on tokens, this may take some time..." do + # Just in case + duplicates = Token.connection.select_values("SELECT value FROM #{Token.table_name} GROUP BY value HAVING COUNT(id) > 1") + Token.where(:value => duplicates).delete_all + + add_index :tokens, :value, :unique => true, :name => 'tokens_value' + end + end + + def down + remove_index :tokens, :name => 'tokens_value' + end +end |