Merge branch '936-index-state' into vacation-work

This commit is contained in:
Reinier Balt 2010-05-02 18:33:48 +02:00
commit c89b234376

View file

@ -0,0 +1,9 @@
class AddIndexToTodoState < ActiveRecord::Migration
def self.up
add_index :todos, :state
end
def self.down
remove_index :todos, :state
end
end