mirror of
https://github.com/ENSL/ensl.org.git
synced 2025-01-14 13:51:26 +00:00
12 lines
241 B
Ruby
12 lines
241 B
Ruby
|
class AddMoreIndexes < ActiveRecord::Migration
|
||
|
def self.up
|
||
|
add_index :pcws, :match_time
|
||
|
add_index :movies, :status
|
||
|
add_index :gatherers, :gather_id
|
||
|
add_index :comments, [:commentable_type, :id]
|
||
|
end
|
||
|
|
||
|
def self.down
|
||
|
end
|
||
|
end
|