Sha256: a21701e377f9ba4e9c6202440b4de0cf6c9c50f0786cbc72b12646ea0b784750
Contents?: true
Size: 275 Bytes
Versions: 34
Compression:
Stored size: 275 Bytes
Contents
class AddMissingIndexesToCustomFieldsProjects < ActiveRecord::Migration def self.up add_index :custom_fields_projects, [:custom_field_id, :project_id] end def self.down remove_index :custom_fields_projects, :column => [:custom_field_id, :project_id] end end
Version data entries
34 entries across 34 versions & 1 rubygems