Commit ad25d15d authored by Jean-Philippe Lang's avatar Jean-Philippe Lang

Fixed error on migration 85 with Oracle (index name can not be more than 30 characters long).

git-svn-id: http://redmine.rubyforge.org/svn/trunk@1069 e93f8b46-1217-0410-a6f0-8f06a7374b81
parent e2281106
class AddRoleTrackerOldStatusIndexToWorkflows < ActiveRecord::Migration
def self.up
add_index :workflows, [:role_id, :tracker_id, :old_status_id], :name => :workflows_role_tracker_old_status
add_index :workflows, [:role_id, :tracker_id, :old_status_id], :name => :wkfs_role_tracker_old_status
end
def self.down
remove_index :workflows, :name => :workflows_role_tracker_old_status
remove_index(:workflows, :name => :wkfs_role_tracker_old_status); rescue
end
end
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment