1
0
espelhamento de https://github.com/redmine/redmine.git sincronizado 2024-08-26 17:58:38 +02:00
redmine/db/migrate/20091017213257_add_missing_indexes_to_auth_sources.rb

10 linhas
208 B
Ruby
Original Visão normal Histórico

class AddMissingIndexesToAuthSources < ActiveRecord::Migration
def self.up
add_index :auth_sources, [:id, :type]
end
def self.down
remove_index :auth_sources, :column => [:id, :type]
end
end