To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / .svn / pristine / 26 / 26f86ae1682862e19961fc81b57435b3f97dc14a.svn-base @ 1297:0a574315af3e

History | View | Annotate | Download (208 Bytes)

1
class AddMissingIndexesToCustomValues < ActiveRecord::Migration
2
  def self.up
3
    add_index :custom_values, :custom_field_id
4
  end
5

    
6
  def self.down
7
    remove_index :custom_values, :custom_field_id
8
  end
9
end