Project

General

Profile

Download (388 Bytes) Statistics
| Branch: | Tag: | Revision:
class AddTypeToParameterIndex < ActiveRecord::Migration
def up
if index_exists? :parameters, [:reference_id, :name], :unique => true
remove_index :parameters, :column => [:reference_id, :name]
add_index :parameters, [:type, :reference_id, :name], :unique => true
end
end

def down
remove_index :parameters, :column => [:type, :reference_id, :name]
end
end
(241-241/241)