Mercurial > hg > soundsoftware-site
view .svn/pristine/1d/1d1a40d68d66d098f38161f4b90f0e887e1b73d9.svn-base @ 1625:808a40a7cac7 live
Have a go at fixing #570 Can't delete downloadable file from version in project with no issue tracker
author | Chris Cannam |
---|---|
date | Thu, 07 Feb 2019 13:48:00 +0000 |
parents | 261b3d9a4903 |
children |
line wrap: on
line source
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