mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-27 04:51:14 +00:00
11 lines
241 B
Ruby
11 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
|