Check if index exists before removing it (#12713).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11137 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
98c8212d71
commit
cc47ccb1c2
|
@ -1,13 +1,32 @@
|
||||||
class ChangeChangesetsRevisionToString < ActiveRecord::Migration
|
class ChangeChangesetsRevisionToString < ActiveRecord::Migration
|
||||||
def self.up
|
def self.up
|
||||||
|
# Some backends (eg. SQLServer 2012) do not support changing the type
|
||||||
|
# of an indexed column so the index needs to be dropped first
|
||||||
|
# BUT this index is renamed with some backends (at least SQLite3) for
|
||||||
|
# some (unknown) reasons, thus we check for the other name as well
|
||||||
|
# so we don't end up with 2 identical indexes
|
||||||
|
if index_exists? :changesets, [:repository_id, :revision], :name => :changesets_repos_rev
|
||||||
remove_index :changesets, :name => :changesets_repos_rev
|
remove_index :changesets, :name => :changesets_repos_rev
|
||||||
|
end
|
||||||
|
if index_exists? :changesets, [:repository_id, :revision], :name => :altered_changesets_repos_rev
|
||||||
|
remove_index :changesets, :name => :altered_changesets_repos_rev
|
||||||
|
end
|
||||||
|
|
||||||
change_column :changesets, :revision, :string, :null => false
|
change_column :changesets, :revision, :string, :null => false
|
||||||
|
|
||||||
add_index :changesets, [:repository_id, :revision], :unique => true, :name => :changesets_repos_rev
|
add_index :changesets, [:repository_id, :revision], :unique => true, :name => :changesets_repos_rev
|
||||||
end
|
end
|
||||||
|
|
||||||
def self.down
|
def self.down
|
||||||
|
if index_exists? :changesets, :changesets_repos_rev
|
||||||
remove_index :changesets, :name => :changesets_repos_rev
|
remove_index :changesets, :name => :changesets_repos_rev
|
||||||
|
end
|
||||||
|
if index_exists? :changesets, [:repository_id, :revision], :name => :altered_changesets_repos_rev
|
||||||
|
remove_index :changesets, :name => :altered_changesets_repos_rev
|
||||||
|
end
|
||||||
|
|
||||||
change_column :changesets, :revision, :integer, :null => false
|
change_column :changesets, :revision, :integer, :null => false
|
||||||
|
|
||||||
add_index :changesets, [:repository_id, :revision], :unique => true, :name => :changesets_repos_rev
|
add_index :changesets, [:repository_id, :revision], :unique => true, :name => :changesets_repos_rev
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue