view db/migrate/091_change_changesets_revision_to_string.rb @ 1496:17c7ffe039b1 redmine-2.4-integration

Merge from default branch
author Chris Cannam
date Mon, 17 Mar 2014 08:57:53 +0000
parents 261b3d9a4903
children
line wrap: on
line source
class ChangeChangesetsRevisionToString < ActiveRecord::Migration
  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
    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

    add_index :changesets, [:repository_id, :revision], :unique => true, :name => :changesets_repos_rev
  end

  def self.down
    if index_exists? :changesets, :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

    add_index :changesets, [:repository_id, :revision], :unique => true, :name => :changesets_repos_rev
  end
end