This commit is contained in:
albert
2013-04-09 15:20:34 -04:00
parent 3c45933cb8
commit c17ab321be
2 changed files with 16 additions and 1 deletions

View File

@@ -0,0 +1,6 @@
class AddCreatorIdIndexToComments < ActiveRecord::Migration
def change
execute "set statement_timeout = 0"
add_index :comments, :creator_id
end
end