System notice: In light of the Debian OpenSSL security issue we've regenerated the server keys. See this thread for instructions and the new key fingerprints.

Commit 8edfc4faef76b553f78162511f11dfff3b9d22e4

add indexes to cloners table

Commit diff

db/migrate/026_add_indexes_to_cloners.rb

 
1class AddIndexesToCloners < ActiveRecord::Migration
2 def self.up
3 add_index :cloners, :repository_id
4 add_index :cloners, :date
5 add_index :cloners, :ip
6 end
7
8 def self.down
9 remove_index :cloners, :repository_id
10 remove_index :cloners, :date
11 remove_index :cloners, :ip
12 end
13end
toggle raw diff