1
0
miroir de https://github.com/redmine/redmine.git synchronisé 2024-08-26 05:57:38 +02:00
redmine/db/migrate/20091017214750_add_missing_indexes_to_custom_fields_trackers.rb

10 lignes
275 B
Ruby
Brut Vue normale Historique

class AddMissingIndexesToCustomFieldsTrackers < ActiveRecord::Migration
def self.up
add_index :custom_fields_trackers, [:custom_field_id, :tracker_id]
end
def self.down
remove_index :custom_fields_trackers, :column => [:custom_field_id, :tracker_id]
end
end