discourse/db/migrate/20120427150624_add_user_id_...

6 lines
113 B
Ruby
Raw Normal View History

class AddUserIdIndexToPosts < ActiveRecord::Migration[4.2]
2013-02-05 14:16:51 -05:00
def change
add_index :posts, :user_id
end
end