mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-28 13:31:06 +00:00
7 lines
142 B
Ruby
7 lines
142 B
Ruby
|
class AddIndexToForumers < ActiveRecord::Migration
|
||
|
def change
|
||
|
add_index :forumers, :forum_id
|
||
|
add_index :forumers, :group_id
|
||
|
end
|
||
|
end
|