0
0
Fork 0
mirror of https://github.com/ENSL/ensl.org.git synced 2025-02-13 07:20:59 +00:00
ensl.org/db/migrate/20150820223313_add_index_to_forumers.rb

7 lines
144 B
Ruby
Raw Normal View History

2015-08-20 22:37:26 +00:00
class AddIndexToForumers < ActiveRecord::Migration
def change
2015-08-20 22:38:21 +00:00
add_index :forumers, :forum_id
add_index :forumers, :group_id
2015-08-20 22:37:26 +00:00
end
end