1
0
şunun yansıması https://github.com/redmine/redmine.git eşitlendi 2024-08-26 17:58:38 +02:00
redmine/db/migrate/20091017213257_add_missing_indexes_to_auth_sources.rb

10 satır
208 B
Ruby
Ham Normal Görünüm Geçmiş

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