Class: AddReputationsIndex

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/generators/reputation_system/templates/add_reputations_index.rb

Overview

Copyright 2012 Twitter, Inc

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

Class Method Summary collapse

Class Method Details

.downObject



22
23
24
# File 'lib/generators/reputation_system/templates/add_reputations_index.rb', line 22

def self.down
  remove_index :rs_reputations, :name => "index_rs_reputations_on_reputation_name_and_target"
end

.upObject



18
19
20
# File 'lib/generators/reputation_system/templates/add_reputations_index.rb', line 18

def self.up
  add_index :rs_reputations, [:reputation_name, :target_id, :target_type], :name => "index_rs_reputations_on_reputation_name_and_target"
end