mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-11-15 01:11:23 +00:00
6 lines
144 B
Ruby
6 lines
144 B
Ruby
class AddIndexToForumers < ActiveRecord::Migration
|
|
def change
|
|
add_index :forumers, :forum_id
|
|
add_index :forumers, :group_id
|
|
end
|
|
end
|