thingspeak/db/migrate/20120907024520_add_index_to_channel.rb

9 lines
133 B
Ruby
Raw Normal View History

class AddIndexToChannel < ActiveRecord::Migration
def self.up
add_index(:channels, :ranking)
end
def self.down
end
end